Alignement design systeme OK
This commit is contained in:
51
unionflow-mobile-apps/test_app.dart
Normal file
51
unionflow-mobile-apps/test_app.dart
Normal file
@@ -0,0 +1,51 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() {
|
||||
runApp(const TestApp());
|
||||
}
|
||||
|
||||
class TestApp extends StatelessWidget {
|
||||
const TestApp({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
title: 'Test UnionFlow',
|
||||
home: Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('Test UnionFlow'),
|
||||
backgroundColor: Colors.blue,
|
||||
foregroundColor: Colors.white,
|
||||
),
|
||||
body: const Center(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Icon(
|
||||
Icons.check_circle,
|
||||
size: 100,
|
||||
color: Colors.green,
|
||||
),
|
||||
SizedBox(height: 20),
|
||||
Text(
|
||||
'UnionFlow Mobile App',
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
SizedBox(height: 10),
|
||||
Text(
|
||||
'Application lancée avec succès !',
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
color: Colors.grey,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user