mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
push fetch devices and connecting the filters
This commit is contained in:
@ -21,30 +21,35 @@ class MenuSidebar extends StatelessWidget {
|
||||
color: ColorsManager.whiteColors,
|
||||
),
|
||||
width: 200,
|
||||
child: Padding(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(15.0),
|
||||
child: Column(
|
||||
children: [
|
||||
Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
const Text('Community',style: TextStyle(fontSize: 20),),
|
||||
const Text(
|
||||
'Community',
|
||||
style: TextStyle(fontSize: 20),
|
||||
),
|
||||
CircleAvatar(
|
||||
backgroundColor: Colors.grey.shade200,
|
||||
child: IconButton(
|
||||
color: ColorsManager.onSecondaryColor,
|
||||
onPressed: () {},
|
||||
icon: const Icon(Icons.add)
|
||||
),
|
||||
)
|
||||
color: ColorsManager.onSecondaryColor,
|
||||
onPressed: () {},
|
||||
icon: const Icon(Icons.add)),
|
||||
)
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 20,),
|
||||
TextFormField(
|
||||
controller: TextEditingController(),
|
||||
decoration:textBoxDecoration(suffixIcon: true)
|
||||
const SizedBox(
|
||||
height: 20,
|
||||
),
|
||||
Container(height: 100,)
|
||||
TextFormField(
|
||||
controller: TextEditingController(),
|
||||
decoration: textBoxDecoration(suffixIcon: true)),
|
||||
Container(
|
||||
height: 100,
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
|
Reference in New Issue
Block a user