+ LibraryPage
+ StoryPage
+ logo
+ font
This commit is contained in:
2023-09-13 09:03:52 +02:00
parent f8348a3f96
commit 063b3ed8d3
186 changed files with 17200 additions and 325 deletions

View File

@@ -0,0 +1,45 @@
import 'package:flutter/material.dart';
import 'package:story/utils/iconCard.dart';
class LibraryPage extends StatelessWidget {
const LibraryPage({super.key}) ;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Page suivante'),
),
body: Column(
children: [
Expanded(
child: GridView.count(
crossAxisCount: 2,
shrinkWrap: true,
padding: EdgeInsets.all(20),
children: [
IconCard(icon: Icons.home, label: 'Accueil'),
IconCard(icon: Icons.settings, label: 'Paramètres'),
IconCard(icon: Icons.camera, label: 'Appareil photo'),
IconCard(icon: Icons.person, label: 'Profil'),
IconCard(icon: Icons.home, label: 'Accueil'),
IconCard(icon: Icons.settings, label: 'Paramètres'),
IconCard(icon: Icons.camera, label: 'Appareil photo'),
IconCard(icon: Icons.person, label: 'Profil'),
IconCard(icon: Icons.home, label: 'Accueil'),
IconCard(icon: Icons.settings, label: 'Paramètres'),
IconCard(icon: Icons.camera, label: 'Appareil photo'),
IconCard(icon: Icons.person, label: 'Profil'),
IconCard(icon: Icons.home, label: 'Accueil'),
IconCard(icon: Icons.settings, label: 'Paramètres'),
IconCard(icon: Icons.camera, label: 'Appareil photo'),
IconCard(icon: Icons.person, label: 'Profil'),
],
),
),
],
),
);
}
}