Files
unionflow-server-impl-quarkus/unionflow-mobile-apps/test_app.dart
2025-09-20 03:56:11 +00:00

52 lines
1.2 KiB
Dart

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,
),
),
],
),
),
),
);
}
}