Commit e9371a51 authored by Budi Prasetyo's avatar Budi Prasetyo

dashboard

parent 1a8fc67b
......@@ -56,14 +56,32 @@ class _Dashboard4State extends State<Dashboard4> {
padding: const EdgeInsets.all(30.0),
child: Container(
padding: const EdgeInsets.symmetric(horizontal: 10),
decoration: BoxDecoration(borderRadius: BorderRadius.circular(20),color: Colors.blueAccent[200]),
decoration: BoxDecoration(
color: Colors.white60,
borderRadius: BorderRadius.circular(20),
boxShadow: [
BoxShadow(
color: const Color.fromARGB(255, 10, 116, 255)
.withAlpha(60),
blurRadius: 5.0,
spreadRadius: 5.0,
offset: const Offset(
0.0,
3.0,
),
),
]),
child: Column(
children: [
Container(
height: screenSize.height * 0.15,
child: Center(
child: Text('Data Messages from User',style: GoogleFonts.poppins(fontSize: 30,fontWeight: FontWeight.w500),),
child: Text('Data Messages from User',style: GoogleFonts.poppins(
height: 1.5,
fontSize: 31,
fontWeight: FontWeight.bold,
color: Colors.blueAccent[200]),),
),
),
Container(
......
......@@ -78,7 +78,11 @@ class _Dashboard3State extends State<Dashboard3> {
child: ListTile(
title: Center(
child: Text('WhatsApp Admin Number',
style: GoogleFonts.poppins(height: 1.5,fontSize: 31,fontWeight: FontWeight.bold,color: Colors.green),
style: GoogleFonts.poppins(
height: 1.5,
fontSize: 31,
fontWeight: FontWeight.bold,
color: Colors.blueAccent[200]),
),
),
),
......@@ -89,7 +93,7 @@ class _Dashboard3State extends State<Dashboard3> {
mainAxisAlignment: MainAxisAlignment.center,
children: [
Container(
height: 45,
height: 48,
width: 250,
child: TextFormField(
controller: phoneController,
......
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