Initial commit
This commit is contained in:
parent
32e425f961
commit
e94d583b8b
67 changed files with 2516 additions and 698 deletions
22
lib/screens/tabs/account.dart
Normal file
22
lib/screens/tabs/account.dart
Normal file
|
@ -0,0 +1,22 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:canal/models/tab.dart';
|
||||
|
||||
class AccountTab extends StatelessWidget implements TabPage {
|
||||
const AccountTab({super.key});
|
||||
|
||||
@override
|
||||
IconData get icon => Icons.person;
|
||||
|
||||
@override
|
||||
String get title => "Account";
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) => Scaffold(
|
||||
body: Center(
|
||||
child: Text(
|
||||
"Coming soon...",
|
||||
style: Theme.of(context).textTheme.displayMedium,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
Reference in a new issue