feat: button icons reflect function and buttons are circles
This commit is contained in:
parent
4fe4173063
commit
1f110a8d0e
1 changed files with 20 additions and 4 deletions
|
|
@ -21,14 +21,22 @@ class DataEntryPage extends StatelessWidget {
|
|||
Expanded(
|
||||
child: ElevatedButton(
|
||||
onPressed: () {},
|
||||
child: const Icon(Icons.account_balance),
|
||||
style: ElevatedButton.styleFrom(
|
||||
shape: CircleBorder(),
|
||||
padding: EdgeInsets.all(24),
|
||||
),
|
||||
child: const Icon(Icons.error_outline, size: 120,),
|
||||
),
|
||||
),
|
||||
SizedBox.fromSize(size: const Size.fromWidth(32)),
|
||||
Expanded(
|
||||
child: ElevatedButton(
|
||||
onPressed: () {},
|
||||
child: const Icon(Icons.add_a_photo),
|
||||
style: ElevatedButton.styleFrom(
|
||||
shape: CircleBorder(),
|
||||
padding: EdgeInsets.all(24),
|
||||
),
|
||||
child: const Icon(Icons.notifications_paused_sharp, size: 120,),
|
||||
),
|
||||
),
|
||||
],
|
||||
|
|
@ -47,7 +55,11 @@ class DataEntryPage extends StatelessWidget {
|
|||
flex: 10,
|
||||
child: ElevatedButton(
|
||||
onPressed: () {},
|
||||
child: const Icon(Icons.account_balance),
|
||||
style: ElevatedButton.styleFrom(
|
||||
shape: CircleBorder(),
|
||||
padding: EdgeInsets.all(24),
|
||||
),
|
||||
child: const Icon(Icons.electric_bolt, size: 120,),
|
||||
),
|
||||
),
|
||||
SizedBox.fromSize(size: const Size.fromWidth(32)),
|
||||
|
|
@ -55,7 +67,11 @@ class DataEntryPage extends StatelessWidget {
|
|||
flex: 10,
|
||||
child: ElevatedButton(
|
||||
onPressed: () {},
|
||||
child: const Icon(Icons.add_a_photo),
|
||||
style: ElevatedButton.styleFrom(
|
||||
shape: CircleBorder(),
|
||||
padding: EdgeInsets.all(24),
|
||||
),
|
||||
child: const Icon(Icons.medication_outlined, size: 120,),
|
||||
),
|
||||
),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue