Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
medapp_eksad
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
qorri_di
medapp_eksad
Commits
a8531451
Commit
a8531451
authored
Sep 01, 2022
by
Fikri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
menambahkan login.dart
parent
ab48be35
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
306 additions
and
0 deletions
+306
-0
bg-medapp.png
assets/images/bg-medapp.png
+0
-0
eksad.jpg
assets/logo/eksad.jpg
+0
-0
login.dart
lib/login.dart
+304
-0
main.dart
lib/main.dart
+2
-0
No files found.
assets/images/bg-medapp.png
0 → 100644
View file @
a8531451
859 KB
assets/logo/eksad.jpg
0 → 100644
View file @
a8531451
11.3 KB
lib/login.dart
0 → 100644
View file @
a8531451
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
void
setPageTitle
(
String
title
,
BuildContext
context
)
{
SystemChrome
.
setApplicationSwitcherDescription
(
ApplicationSwitcherDescription
(
label:
title
,
primaryColor:
Theme
.
of
(
context
).
primaryColor
.
value
,
// This line is required
));
}
class
login
extends
StatefulWidget
{
const
login
({
Key
?
key
})
:
super
(
key:
key
);
@override
State
<
login
>
createState
()
=>
_loginState
();
}
class
_loginState
extends
State
<
login
>
{
bool
_isObscure
=
true
;
final
formKey
=
GlobalKey
<
FormState
>();
String
_usmail
=
''
;
String
_uspswd
=
''
;
TextEditingController
_editingController
=
TextEditingController
();
TextEditingController
_editingController2
=
TextEditingController
();
@override
Widget
build
(
BuildContext
context
)
{
setPageTitle
(
'Login MedApps'
,
context
);
var
screenSize
=
MediaQuery
.
of
(
context
).
size
;
return
Scaffold
(
body:
Container
(
decoration:
const
BoxDecoration
(
image:
DecorationImage
(
image:
AssetImage
(
"assets/images/bg-medapp.png"
),
fit:
BoxFit
.
fill
,
)),
height:
screenSize
.
height
,
width:
screenSize
.
width
,
padding:
EdgeInsets
.
only
(
left:
screenSize
.
width
*
0.15
,
top:
screenSize
.
height
*
0.13
,
bottom:
screenSize
.
height
*
0.13
),
child:
Stack
(
children:
[
Container
(
decoration:
BoxDecoration
(
color:
const
Color
.
fromARGB
(
255
,
10
,
116
,
255
),
borderRadius:
BorderRadius
.
circular
(
20
),
),
width:
screenSize
.
width
*
0.36
,
height:
screenSize
.
height
*
0.9
,
child:
Image
.
asset
(
"assets/logo/eksad.jpg"
,
),
),
Padding
(
padding:
EdgeInsets
.
only
(
left:
screenSize
.
width
*
0.33
,
top:
screenSize
.
height
*
0.07
),
child:
Container
(
width:
screenSize
.
width
*
0.3
,
height:
screenSize
.
height
*
0.6
,
decoration:
BoxDecoration
(
color:
Colors
.
white
,
borderRadius:
BorderRadius
.
circular
(
20
),
border:
Border
.
all
(
width:
5
,
color:
const
Color
.
fromARGB
(
255
,
10
,
116
,
255
),
),
boxShadow:
[
BoxShadow
(
color:
const
Color
.
fromARGB
(
255
,
10
,
116
,
255
)
.
withAlpha
(
60
),
blurRadius:
15.0
,
spreadRadius:
20.0
,
offset:
const
Offset
(
0.0
,
3.0
,
),
),
]),
child:
Form
(
key:
formKey
,
child:
Container
(
padding:
EdgeInsets
.
only
(
left:
screenSize
.
width
*
0.045
,
top:
screenSize
.
height
*
0.05
),
width:
screenSize
.
width
*
0.36
,
height:
screenSize
.
height
*
0.9
,
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
children:
[
Container
(
padding:
EdgeInsets
.
only
(
left:
screenSize
.
width
*
0.055
),
height:
screenSize
.
width
*
0.02
,
child:
Image
.
asset
(
"assets/logo/medapp-logo.png"
),
),
const
Spacer
(
flex:
1
,
),
Row
(
children:
[
Icon
(
Icons
.
email_outlined
,
color:
Colors
.
grey
[
500
],
size:
screenSize
.
width
*
0.01
,
),
const
SizedBox
(
width:
10
,
),
const
Text
(
"Email"
),
],
),
const
Spacer
(
flex:
1
,
),
Container
(
height:
40
,
width:
screenSize
.
width
*
0.2
,
child:
TextFormField
(
controller:
_editingController
,
textAlign:
TextAlign
.
start
,
decoration:
InputDecoration
(
labelText:
"Enter Your Email"
,
hintStyle:
const
TextStyle
(),
border:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
circular
(
5.0
),
),
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
trim
().
isEmpty
)
{
_editingController
.
clear
();
return
"please enter your email address"
;
}
else
if
(!
RegExp
(
r'\S+@\S+\.\S+'
)
.
hasMatch
(
value
))
{
return
'Please enter a valid email address'
;
}
else
{
return
null
;
}
},
onChanged:
(
value
)
=>
_usmail
=
value
,
),
),
const
Spacer
(
flex:
2
,
),
Row
(
children:
[
Icon
(
Icons
.
vpn_key_outlined
,
color:
Colors
.
grey
[
500
],
size:
screenSize
.
width
*
0.01
,
),
const
SizedBox
(
width:
10
,
),
const
Text
(
"Password"
),
],
),
const
Spacer
(
flex:
1
,
),
Container
(
height:
40
,
width:
screenSize
.
width
*
0.2
,
child:
TextFormField
(
controller:
_editingController2
,
textAlign:
TextAlign
.
start
,
obscureText:
_isObscure
,
decoration:
InputDecoration
(
labelText:
"Password"
,
suffixIcon:
IconButton
(
icon:
Icon
(
_isObscure
?
Icons
.
visibility
:
Icons
.
visibility_off
),
onPressed:
()
{
setState
(
()
{
_isObscure
=
!
_isObscure
;
},
);
},
),
hintStyle:
const
TextStyle
(),
border:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
circular
(
5.0
)),
),
validator:
(
value
)
{
if
(
value
==
null
||
value
.
trim
().
isEmpty
)
{
_editingController2
.
clear
();
return
'This field is required'
;
}
else
if
(
value
.
trim
().
length
<
8
)
{
return
'Password must be at least 8 characters in length'
;
}
return
null
;
},
onChanged:
(
value
)
=>
_uspswd
=
value
,
),
),
const
Spacer
(
flex:
3
,
),
Row
(
children:
[
Container
(
height:
30
,
width:
screenSize
.
width
*
0.08
,
child:
ElevatedButton
(
onPressed:
()
{
if
(
_usmail
==
'admin@admin.com'
&&
_uspswd
!=
'administrator'
)
{
showDialog
<
String
>(
context:
context
,
builder:
(
BuildContext
context
)
=>
AlertDialog
(
title:
const
Text
(
'Gagal login'
),
content:
const
Text
(
'Password anda salah!!!'
),
actions:
<
Widget
>[
TextButton
(
onPressed:
()
=>
Navigator
.
pop
(
context
,
'OK'
),
child:
const
Text
(
'OK'
),
),
],
),
);
}
else
if
(
_usmail
==
'client@client.com'
&&
_uspswd
!=
'clientpage'
)
{
showDialog
<
String
>(
context:
context
,
builder:
(
BuildContext
context
)
=>
AlertDialog
(
title:
const
Text
(
'Gagal login'
),
content:
const
Text
(
'Password anda salah!!!'
),
actions:
<
Widget
>[
TextButton
(
onPressed:
()
=>
Navigator
.
pop
(
context
,
'OK'
),
child:
const
Text
(
'OK'
),
),
],
),
);
}
else
if
(
_usmail
==
'admin@admin.com'
&&
_uspswd
==
'administrator'
)
{
Navigator
.
pushNamed
(
context
,
'/admin'
);
}
else
if
(
_usmail
==
'client@client.com'
&&
_uspswd
==
'clientpage'
)
{
Navigator
.
pushNamed
(
context
,
'/client'
);
}
else
{
showDialog
<
String
>(
context:
context
,
builder:
(
BuildContext
context
)
=>
AlertDialog
(
title:
const
Text
(
'Gagal login'
),
content:
const
Text
(
'Akun Belum terdaftar, Silahkan Registrasi'
),
actions:
<
Widget
>[
TextButton
(
onPressed:
()
=>
Navigator
.
pop
(
context
,
'OK'
),
child:
const
Text
(
'OK'
),
),
],
),
);
}
},
child:
const
Text
(
"LOGIN"
),
),
),
SizedBox
(
width:
screenSize
.
width
*
0.04
,
),
Container
(
height:
30
,
width:
screenSize
.
width
*
0.08
,
child:
ElevatedButton
(
onPressed:
()
{
Navigator
.
pushNamed
(
context
,
'/register'
);
},
child:
const
Text
(
"REGISTER"
),
),
),
],
),
const
Spacer
(
flex:
7
,
),
],
),
),
),
),
),
],
),
),
);
}
}
lib/main.dart
View file @
a8531451
import
'package:flutter/material.dart'
;
import
'package:medapp_eksad/homepage.dart'
;
import
'package:medapp_eksad/login.dart'
;
import
'package:medapp_eksad/screen/contact_us/contact_us.dart'
;
import
'package:medapp_eksad/screen/solution.dart'
;
...
...
@@ -21,6 +22,7 @@ class MyApp extends StatelessWidget {
'/about'
:
(
context
)
=>
const
HomePage
(),
'/solutions'
:
(
context
)
=>
const
Solutions
(),
'/contact'
:
(
context
)
=>
const
ContactUs
(),
'/login'
:
(
context
)
=>
const
login
(),
},
);
}
...
...
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