28 lines
739 B
Dart
28 lines
739 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CountContent extends StatelessWidget {
|
|
const CountContent({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
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),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|