Add launch configuration, update API keys, and refactor UI components for better structure and performance
This commit is contained in:
@@ -5,9 +5,23 @@ class CountContent extends StatelessWidget {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(title: const Text('Count Page')),
|
||||
body: const Center(child: Text('This is the Count Page')),
|
||||
return const Center(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Icon(Icons.account_balance_wallet, size: 64, color: Colors.green),
|
||||
SizedBox(height: 16),
|
||||
Text(
|
||||
'Comptes et Budget',
|
||||
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
|
||||
),
|
||||
SizedBox(height: 8),
|
||||
Text(
|
||||
'Gérez vos dépenses de voyage',
|
||||
style: TextStyle(fontSize: 16, color: Colors.grey),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user