Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mediateque
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Benjamin LEROUX
mediateque
Commits
28e7571f
Commit
28e7571f
authored
Feb 10, 2021
by
Benjamin LEROUX
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Info & final commit
parent
115e547c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
97 additions
and
23 deletions
+97
-23
Game.dart
lib/Game.dart
+2
-3
Manga.dart
lib/Manga.dart
+1
-3
main.dart
lib/main.dart
+38
-5
pubspec.lock
pubspec.lock
+55
-7
pubspec.yaml
pubspec.yaml
+1
-5
No files found.
lib/Game.dart
View file @
28e7571f
...
...
@@ -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
lib/Manga.dart
View file @
28e7571f
...
...
@@ -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
,),
),
...
...
lib/main.dart
View file @
28e7571f
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:
'
Favori
s'
,
),
BottomNavigationBarItem
(
icon:
Icon
(
Icons
.
not_listed_location
),
...
...
pubspec.lock
View file @
28e7571f
...
...
@@ -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"
pubspec.yaml
View file @
28e7571f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment