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

Info & final commit

parent 115e547c
...@@ -82,9 +82,9 @@ class _DetailGameScreenState extends State<DetailGameScreen> { ...@@ -82,9 +82,9 @@ class _DetailGameScreenState extends State<DetailGameScreen> {
)], )],
), ),
), ),
floatingActionButtonLocation: FloatingActionButtonLocation.endFloat, floatingActionButtonLocation: FloatingActionButtonLocation.endFloat,
floatingActionButton: new FloatingActionButton( floatingActionButton: new FloatingActionButton(
onPressed:(){ onPressed:(){
setState(() { setState(() {
if (widget.game.isSaved) { if (widget.game.isSaved) {
...@@ -94,11 +94,10 @@ class _DetailGameScreenState extends State<DetailGameScreen> { ...@@ -94,11 +94,10 @@ class _DetailGameScreenState extends State<DetailGameScreen> {
} }
}); });
}, },
tooltip: 'Increment', tooltip: 'Fav',
child: new Icon( widget.game.isSaved ? Icons.favorite : Icons.favorite_border, child: new Icon( widget.game.isSaved ? Icons.favorite : Icons.favorite_border,
color: widget.game.isSaved ? Colors.red : null,), color: widget.game.isSaved ? Colors.red : null,),
), ),
); );
} }
} }
\ No newline at end of file
...@@ -92,10 +92,8 @@ class _DetailMangaScreenState extends State<DetailMangaScreen> { ...@@ -92,10 +92,8 @@ class _DetailMangaScreenState extends State<DetailMangaScreen> {
), ),
), ),
floatingActionButtonLocation: FloatingActionButtonLocation.endFloat, floatingActionButtonLocation: FloatingActionButtonLocation.endFloat,
floatingActionButton: new FloatingActionButton( floatingActionButton: new FloatingActionButton(
onPressed:(){ onPressed:(){
setState(() { setState(() {
if (widget.manga.isSaved) { if (widget.manga.isSaved) {
...@@ -105,7 +103,7 @@ class _DetailMangaScreenState extends State<DetailMangaScreen> { ...@@ -105,7 +103,7 @@ class _DetailMangaScreenState extends State<DetailMangaScreen> {
} }
}); });
}, },
tooltip: 'Increment', tooltip: 'Fav',
child: new Icon( widget.manga.isSaved ? Icons.favorite : Icons.favorite_border, child: new Icon( widget.manga.isSaved ? Icons.favorite : Icons.favorite_border,
color: widget.manga.isSaved ? Colors.red : null,), color: widget.manga.isSaved ? Colors.red : null,),
), ),
......
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_media/DataBase.dart'; import 'package:flutter_media/DataBase.dart';
import 'package:url_launcher/url_launcher.dart';
import 'Game.dart'; import 'Game.dart';
import 'Manga.dart'; import 'Manga.dart';
...@@ -126,9 +128,40 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> { ...@@ -126,9 +128,40 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> {
); );
}, },
), ),
Text( ListView(
'Informations', physics: new NeverScrollableScrollPhysics(),
style: optionStyle, 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')),
),]
), ),
]; ];
...@@ -164,7 +197,7 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> { ...@@ -164,7 +197,7 @@ class _MyStatefulWidgetState extends State<MyStatefulWidget> {
), ),
BottomNavigationBarItem( BottomNavigationBarItem(
icon: Icon(Icons.favorite), icon: Icon(Icons.favorite),
label: 'Aimés', label: 'Favoris',
), ),
BottomNavigationBarItem( BottomNavigationBarItem(
icon: Icon(Icons.not_listed_location), icon: Icon(Icons.not_listed_location),
......
...@@ -43,13 +43,6 @@ packages: ...@@ -43,13 +43,6 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.15.0-nullsafety.3" 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: fake_async:
dependency: transitive dependency: transitive
description: description:
...@@ -67,6 +60,11 @@ packages: ...@@ -67,6 +60,11 @@ packages:
description: flutter description: flutter
source: sdk source: sdk
version: "0.0.0" version: "0.0.0"
flutter_web_plugins:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
matcher: matcher:
dependency: transitive dependency: transitive
description: description:
...@@ -88,6 +86,13 @@ packages: ...@@ -88,6 +86,13 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.8.0-nullsafety.1" 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: sky_engine:
dependency: transitive dependency: transitive
description: flutter description: flutter
...@@ -142,6 +147,48 @@ packages: ...@@ -142,6 +147,48 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.3.0-nullsafety.3" 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: vector_math:
dependency: transitive dependency: transitive
description: description:
...@@ -151,3 +198,4 @@ packages: ...@@ -151,3 +198,4 @@ packages:
version: "2.1.0-nullsafety.3" version: "2.1.0-nullsafety.3"
sdks: sdks:
dart: ">=2.10.0-110 <2.11.0" dart: ">=2.10.0-110 <2.11.0"
flutter: ">=1.22.0 <2.0.0"
...@@ -21,14 +21,10 @@ environment: ...@@ -21,14 +21,10 @@ environment:
sdk: ">=2.7.0 <3.0.0" sdk: ">=2.7.0 <3.0.0"
dependencies: dependencies:
url_launcher: ^5.7.10
flutter: flutter:
sdk: 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: dev_dependencies:
flutter_test: flutter_test:
sdk: flutter 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