import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; class Tentang extends HookWidget { const Tentang({ Key? key }) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title : const Text('Tentang'), ), body: const Center( child: Text('Tentang'), ), ); } }