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
594b4a2a
Commit
594b4a2a
authored
Sep 02, 2022
by
Arham Aulia Nugraha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
register
parent
f121d193
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
250 additions
and
1 deletion
+250
-1
register.dart
lib/register.dart
+250
-1
No files found.
lib/register.dart
View file @
594b4a2a
...
...
@@ -8,6 +8,8 @@ class Register extends StatefulWidget {
}
class
_RegisterState
extends
State
<
Register
>
{
bool
_isObscure
=
true
;
@override
Widget
build
(
BuildContext
context
)
{
var
screenize
=
MediaQuery
.
of
(
context
).
size
;
...
...
@@ -15,13 +17,260 @@ class _RegisterState extends State<Register> {
body:
Container
(
height:
screenize
.
height
,
width:
screenize
.
width
,
decoration:
BoxDecoration
(
image:
DecorationImage
(
image:
AssetImage
(
"assets/images/register.jpg"
),
fit:
BoxFit
.
fill
,
)
),
padding:
EdgeInsets
.
only
(
left:
screenize
.
width
*
0.15
,
top:
screenize
.
height
*
0.13
,
bottom:
screenize
.
height
*
0.13
),
child:
Stack
(
children:
[
Container
(
decoration:
BoxDecoration
(
color:
Color
.
fromARGB
(
255
,
10
,
116
,
255
),
borderRadius:
BorderRadius
.
circular
(
20
),
),
width:
screenize
.
width
*
0.36
,
height:
screenize
.
height
*
0.9
,
child:
Image
.
asset
(
"assets/logo/logo-eksad.png"
,
),
),
Padding
(
padding:
EdgeInsets
.
only
(
left:
screenize
.
width
*
0.33
,
top:
screenize
.
height
*
0.07
),
child:
Container
(
width:
screenize
.
width
*
0.3
,
height:
screenize
.
height
*
0.6
,
decoration:
BoxDecoration
(
color:
Colors
.
white
,
borderRadius:
BorderRadius
.
circular
(
20
),
border:
Border
.
all
(
width:
5
,
color:
Color
.
fromARGB
(
255
,
10
,
116
,
255
),
),
boxShadow:
[
BoxShadow
(
color:
Color
.
fromARGB
(
255
,
10
,
116
,
255
).
withAlpha
(
60
),
blurRadius:
15.0
,
spreadRadius:
20.0
,
offset:
Offset
(
0.0
,
3.0
,
),
),],
),
child:
Form
(
child:
Container
(
padding:
EdgeInsets
.
only
(
left:
screenize
.
width
*
0.045
,
top:
screenize
.
height
*
0.05
),
width:
screenize
.
width
*
0.36
,
height:
screenize
.
height
*
0.9
,
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
children:
[
Container
(
padding:
EdgeInsets
.
only
(
left:
screenize
.
width
*
0.055
),
height:
screenize
.
width
*
0.02
,
child:
Image
.
asset
(
"assets/logo/medapp-logo.png"
),
),
SizedBox
(
height:
20
,),
Row
(
children:
[
Icon
(
Icons
.
email_outlined
,
color:
Colors
.
grey
[
500
],
size:
screenize
.
width
*
0.01
,
),
SizedBox
(
width:
10
,
),
Text
(
"Nama"
),
],
),
SizedBox
(
height:
5
,),
Row
(
children:
[
Container
(
height:
40
,
width:
screenize
.
width
*
0.2
,
child:
TextFormField
(
textAlign:
TextAlign
.
start
,
decoration:
InputDecoration
(
labelText:
"Nama Lengkap"
,
hintStyle:
TextStyle
(),
border:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
circular
(
5.0
),
)
),
onChanged:
null
,
),
)
],
),
SizedBox
(
height:
10
,),
Row
(
children:
[
Icon
(
Icons
.
email_outlined
,
color:
Colors
.
grey
[
500
],
size:
screenize
.
width
*
0.01
,
),
SizedBox
(
width:
10
,
),
Text
(
"Email"
),
],
),
SizedBox
(
height:
5
,),
Row
(
children:
[
Container
(
height:
40
,
width:
screenize
.
width
*
0.2
,
child:
TextFormField
(
textAlign:
TextAlign
.
start
,
decoration:
InputDecoration
(
labelText:
"Email Valid"
,
hintStyle:
TextStyle
(),
border:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
circular
(
5.0
),
)
),
onChanged:
null
,
),
)
],
),
SizedBox
(
height:
10
,),
Row
(
children:
[
Icon
(
Icons
.
email_outlined
,
color:
Colors
.
grey
[
500
],
size:
screenize
.
width
*
0.01
,
),
SizedBox
(
width:
10
,
),
Text
(
"No Hp"
),
],
),
SizedBox
(
height:
5
,),
Row
(
children:
[
Container
(
height:
40
,
width:
screenize
.
width
*
0.2
,
child:
TextFormField
(
textAlign:
TextAlign
.
start
,
decoration:
InputDecoration
(
labelText:
"Nomor Handphone"
,
hintStyle:
TextStyle
(),
border:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
circular
(
5.0
),
)
),
onChanged:
null
,
),
)
],
),
SizedBox
(
height:
10
,),
Row
(
children:
[
Icon
(
Icons
.
email_outlined
,
color:
Colors
.
grey
[
500
],
size:
screenize
.
width
*
0.01
,
),
SizedBox
(
width:
10
,
),
Text
(
"Username"
),
],
),
SizedBox
(
height:
5
,),
Container
(
height:
40
,
width:
screenize
.
width
*
0.2
,
child:
TextFormField
(
textAlign:
TextAlign
.
start
,
obscureText:
_isObscure
,
decoration:
InputDecoration
(
labelText:
"Password"
,
suffixIcon:
IconButton
(
icon:
Icon
(
_isObscure
?
Icons
.
visibility
:
Icons
.
visibility_off
),
onPressed:
(){
setState
(()
{
_isObscure
=
!
_isObscure
;
});
},
),
hintStyle:
TextStyle
(),
border:
OutlineInputBorder
(
borderRadius:
BorderRadius
.
circular
(
5.0
)
),
),
),
),
Spacer
(
flex:
4
,
),
Row
(
children:
[
Container
(
height:
30
,
width:
screenize
.
width
*
0.09
,
child:
ElevatedButton
(
onPressed:
(){
},
child:
Text
(
"LOGIN"
),
),
),
SizedBox
(
width:
screenize
.
width
*
0.02
,
),
Container
(
height:
30
,
width:
screenize
.
width
*
0.09
,
child:
ElevatedButton
(
onPressed:
(){
},
child:
Text
(
"REGISTER"
),
),
)
],
),
Spacer
(
flex:
7
,
)
],
),
),
),
),
),
],
),
),
);
}
...
...
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