Newer
Older
import 'package:nfc_gogole_sheet/context/colories.dart';
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MySheetPage(),
);
}
}
class MySheetPage extends StatefulWidget{
const MySheetPage({super.key});
State<MySheetPage> createState() => _MySheetPageState();
class _MySheetPageState extends State<MySheetPage>{
@override
Widget build(BuildContext context) {
return Scaffold(
body: Column(
children: [
SizedBox(height: 50),
Center(
child: Text(
'Contenu du fichier sheet_students.xslx',
style: TextStyle(fontWeight: FontWeight.bold, color:Colories.title),
)
)
]
),