mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
58 lines
1.9 KiB
Dart
58 lines
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_web/core/extension/build_context_x.dart';
|
|
import 'package:syncrow_web/pages/common/filter/filter_widget.dart';
|
|
import 'package:syncrow_web/utils/style.dart';
|
|
|
|
class DeviceManagementBody extends StatelessWidget {
|
|
const DeviceManagementBody({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: const EdgeInsets.all(30),
|
|
height: context.screenHeight,
|
|
width: context.screenWidth,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
FilterWidget(
|
|
size: context.screenSize,
|
|
tabs: ['All', 'Online', 'Offline', 'Low Battery'],
|
|
selectedIndex: 0,
|
|
onTabChanged: (index) {},
|
|
),
|
|
const SizedBox(
|
|
height: 20,
|
|
),
|
|
Wrap(
|
|
children: [
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
'Community',
|
|
style: context.textTheme.bodyMedium!.copyWith(
|
|
fontWeight: FontWeight.w400,
|
|
color: const Color(0xff000000)),
|
|
),
|
|
Container(
|
|
width: context.screenWidth * 0.15,
|
|
margin: const EdgeInsets.only(top: 8),
|
|
decoration: containerDecoration,
|
|
child: TextFormField(
|
|
//: accessBloc.passwordName,
|
|
style: const TextStyle(color: Colors.black),
|
|
decoration: textBoxDecoration()!
|
|
.copyWith(hintText: 'Please enter'),
|
|
)),
|
|
],
|
|
),
|
|
],
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|