Commit 28e7571f authored by Benjamin LEROUX's avatar Benjamin LEROUX

Info & final commit

parent 115e547c
......@@ -82,9 +82,9 @@ class _DetailGameScreenState extends State<DetailGameScreen> {
)],
),
),
floatingActionButtonLocation: FloatingActionButtonLocation.endFloat,
floatingActionButton: new FloatingActionButton(
onPressed:(){
setState(() {
if (widget.game.isSaved) {
......@@ -94,11 +94,10 @@ class _DetailGameScreenState extends State<DetailGameScreen> {
}
});
},
tooltip: 'Increment',
tooltip: 'Fav',
child: new Icon( widget.game.isSaved ? Icons.favorite : Icons.favorite_border,
color: widget.game.isSaved ? Colors.red : null,),
),
);
}
}
\ No newline at end of file
......@@ -92,10 +92,8 @@ class _DetailMangaScreenState extends State<DetailMangaScreen> {
),
),
floatingActionButtonLocation: FloatingActionButtonLocation.endFloat,
floatingActionButton: new FloatingActionButton(
onPressed:(){
setState(() {
if (widget.manga.isSaved) {
......@@ -105,7 +103,7 @@ class _DetailMangaScreenState extends State<DetailMangaScreen> {
}
});
},
tooltip: 'Increment',
tooltip: 'Fav',
child: new Icon( widget.manga.isSaved ? Icons.favorite : Icons.favorite_border,
color: widget.manga.isSaved ? Colors.red : null,),
),
......
import 'package:flutter/cupertino.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter_media/DataBase.dart';
import 'package:url_launcher/url_launcher.dart';
import 'Game.dart';
import 'Manga.dart';
......@@ -126,10 +128,41 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> {
);
},
),
Text(
'Informations',
style: optionStyle,
),
ListView(
physics: new NeverScrollableScrollPhysics(),
children: <Widget>[
Container(
height: 70,
child: Text('Informations',style: titleStyle,textAlign: TextAlign.center),
),
Container(
height: 240,
padding: const EdgeInsets.all(8),
child: RichText(text: TextSpan(children: <TextSpan>[
TextSpan(text: "Développeur: ", style: DetailMangaScreen.boldTitleStyle,),
TextSpan(text: "Benjamin LEROUX\n\n", style: DetailMangaScreen.classicTitleStyle,),
TextSpan(text: "Dates de développement: ", style: DetailMangaScreen.boldTitleStyle,),
TextSpan(text: "Février 2021\n\n", style: DetailMangaScreen.classicTitleStyle,),
TextSpan(text: "Language: ", style: DetailMangaScreen.boldTitleStyle,),
TextSpan(text: "Dart\n\n", style: DetailMangaScreen.classicTitleStyle,),
TextSpan(text: "IDE: ", style: DetailMangaScreen.boldTitleStyle,),
TextSpan(text: "Android Studio\n\n", style: DetailMangaScreen.classicTitleStyle,),
TextSpan(text: "Plateformes: ", style: DetailMangaScreen.boldTitleStyle,),
TextSpan(text: "Android - iOS\n\n", style: DetailMangaScreen.classicTitleStyle,),
TextSpan(text: "Git: ", style: DetailMangaScreen.boldTitleStyle,),
TextSpan(text: 'gvipers.imt-lille-douai.fr/benjamin.leroux', style: new TextStyle(color: Colors.blue, fontSize: 16),recognizer: new TapGestureRecognizer()
..onTap = () { launch('https://gvipers.imt-lille-douai.fr/benjamin.leroux/mediateque');
},
),
],
),
),
),
Container(
height: 280,
child: Align(alignment: Alignment.topCenter,child: Image.network('https://images.radio-canada.ca/q_auto,w_1250/v1/ici-info/16x9/hide-the-pain-harold-meme.jpg')),
),]
),
];
void _onItemTapped(int index) {
......@@ -164,7 +197,7 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> {
),
BottomNavigationBarItem(
icon: Icon(Icons.favorite),
label: 'Aimés',
label: 'Favoris',
),
BottomNavigationBarItem(
icon: Icon(Icons.not_listed_location),
......
......@@ -43,13 +43,6 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.15.0-nullsafety.3"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
fake_async:
dependency: transitive
description:
......@@ -67,6 +60,11 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
flutter_web_plugins:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
matcher:
dependency: transitive
description:
......@@ -88,6 +86,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0-nullsafety.1"
plugin_platform_interface:
dependency: transitive
description:
name: plugin_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.3"
sky_engine:
dependency: transitive
description: flutter
......@@ -142,6 +147,48 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0-nullsafety.3"
url_launcher:
dependency: "direct main"
description:
name: url_launcher
url: "https://pub.dartlang.org"
source: hosted
version: "5.7.10"
url_launcher_linux:
dependency: transitive
description:
name: url_launcher_linux
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+4"
url_launcher_macos:
dependency: transitive
description:
name: url_launcher_macos
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+9"
url_launcher_platform_interface:
dependency: transitive
description:
name: url_launcher_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.9"
url_launcher_web:
dependency: transitive
description:
name: url_launcher_web
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.5+3"
url_launcher_windows:
dependency: transitive
description:
name: url_launcher_windows
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+3"
vector_math:
dependency: transitive
description:
......@@ -151,3 +198,4 @@ packages:
version: "2.1.0-nullsafety.3"
sdks:
dart: ">=2.10.0-110 <2.11.0"
flutter: ">=1.22.0 <2.0.0"
......@@ -21,14 +21,10 @@ environment:
sdk: ">=2.7.0 <3.0.0"
dependencies:
url_launcher: ^5.7.10
flutter:
sdk: flutter
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.0
dev_dependencies:
flutter_test:
sdk: flutter
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment