Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .flutter-plugins
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cloud_firestore=/Users/daniloperez/programas/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.12.9+5/
firebase_auth=/Users/daniloperez/programas/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.14.0+5/
firebase_core=/Users/daniloperez/programas/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.4.0+9/
firebase_storage=/Users/daniloperez/programas/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_storage-3.0.6/
image_picker=/Users/daniloperez/programas/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.0+3/
location=/Users/daniloperez/programas/flutter/.pub-cache/hosted/pub.dartlang.org/location-2.3.5/
cloud_firestore=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\cloud_firestore-0.12.9+5\\
firebase_auth=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\firebase_auth-0.14.0+5\\
firebase_core=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\firebase_core-0.4.0+9\\
firebase_storage=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\firebase_storage-3.0.6\\
image_picker=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\image_picker-0.6.0+3\\
location=C:\\src\\flutter\\.pub-cache\\hosted\\pub.dartlang.org\\location-2.3.5\\
Binary file modified android/.gradle/4.10.2/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified android/.gradle/4.10.2/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified android/.gradle/4.10.2/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified android/.gradle/4.10.2/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file modified android/.gradle/4.10.2/javaCompile/javaCompile.lock
Binary file not shown.
Binary file modified android/.gradle/4.10.2/javaCompile/taskHistory.bin
Binary file not shown.
Binary file modified android/.gradle/4.10.2/taskHistory/taskHistory.bin
Binary file not shown.
Binary file modified android/.gradle/4.10.2/taskHistory/taskHistory.lock
Binary file not shown.
Binary file modified android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified android/.gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions android/local.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
sdk.dir=/Users/daniloperez/Library/Android/sdk
flutter.sdk=/Users/daniloperez/programas/flutter
sdk.dir=C:\\Users\\fblascke\\AppData\\Local\\Android\\sdk
flutter.sdk=C:\\src\\flutter
flutter.buildMode=debug
flutter.versionName=1.0.0
flutter.versionCode=1
8 changes: 6 additions & 2 deletions lib/pages/home/home.page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ class _HomePageState extends State<HomePage> {
child: Column(
children: <Widget>[
if (file != null)
Image.file(file, width: 100, height: 100,),
Image.file(
file,
width: 100,
height: 100,
),
Container(
padding: EdgeInsets.fromLTRB(10, 0, 10, 0),
width: double.infinity,
Expand All @@ -123,7 +127,7 @@ class _HomePageState extends State<HomePage> {
fontSize: 20,
fontWeight: FontWeight.bold),
),
color: Color(0xff006caa),
color: Colors.blue,
onPressed: () async {
Navigator.push(
context,
Expand Down
6 changes: 3 additions & 3 deletions lib/pages/login/login.page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class _LoginPageState extends State<LoginPage> {
),
filled: true,
hintStyle: new TextStyle(color: Colors.grey[800]),
hintText: "eMail",
hintText: "E-Mail",
fillColor: Colors.white),
),
),
Expand All @@ -84,7 +84,7 @@ class _LoginPageState extends State<LoginPage> {
),
filled: true,
hintStyle: new TextStyle(color: Colors.grey[800]),
hintText: "senha",
hintText: "Senha",
fillColor: Colors.white),
),
),
Expand All @@ -96,7 +96,7 @@ class _LoginPageState extends State<LoginPage> {
shape: StadiumBorder(),
textColor: Colors.white,
child: Text(
'LOGIN',
'Login',
style: TextStyle(
fontSize: 20, fontWeight: FontWeight.bold),
),
Expand Down