first commit

This commit is contained in:
kicap1992
2022-04-06 07:53:12 +08:00
commit b5367d4fe0
21 changed files with 1181 additions and 0 deletions

18
lib/pages/tentang.dart Normal file
View File

@ -0,0 +1,18 @@
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'),
),
);
}
}