Commit 486c0536 authored by Budi Prasetyo's avatar Budi Prasetyo

latlong

parent d8cab087
......@@ -510,9 +510,59 @@ class _RegisterPicState extends State<RegisterPic> {
// ===============akhir password==========
],
),
const SizedBox(
width: 30,
),
],
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
// ===============password==========
Row(
children: [
Icon(
Icons.vpn_lock,
color: Colors.grey[500],
size: screenize.width * 0.01,
),
const SizedBox(
width: 10,
),
const Text("Latitude & Longitude PIC",
style: TextStyle(
fontSize: 13
),
),
],
),
const SizedBox(height: 5,),
Container(
height: 50,
width: screenize.width * 0.42,
decoration: BoxDecoration(
border: Border.all(color: Colors.grey),
borderRadius: BorderRadius.circular(10),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(''),
Container(
height: 51,
child: ClipRRect(
borderRadius: BorderRadius.circular(10),
child: ElevatedButton(onPressed: (){}, child: Text('Set'))),
),
],
)
),
// ===============akhir password==========
],
),
const Spacer(
flex: 4,
),
......
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