mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-11-27 23:24:55 +00:00
update devices
This commit is contained in:
@ -15,6 +15,8 @@ import 'package:syncrow_app/utils/resource_manager/constants.dart';
|
||||
import 'package:syncrow_app/generated/assets.dart';
|
||||
import 'package:syncrow_app/utils/resource_manager/font_manager.dart';
|
||||
|
||||
import '../device_appbar.dart';
|
||||
|
||||
class ACsView extends StatelessWidget {
|
||||
final DeviceModel? deviceModel;
|
||||
const ACsView({this.deviceModel, super.key});
|
||||
@ -39,14 +41,9 @@ class ACsView extends StatelessWidget {
|
||||
backgroundColor: ColorsManager.backgroundColor,
|
||||
extendBodyBehindAppBar: true,
|
||||
extendBody: true,
|
||||
appBar: AppBar(
|
||||
backgroundColor: Colors.transparent,
|
||||
centerTitle: true,
|
||||
title: BodyLarge(
|
||||
text: deviceModel?.name ?? "",
|
||||
fontColor: ColorsManager.primaryColor,
|
||||
fontWeight: FontsManager.bold,
|
||||
),
|
||||
appBar: DeviceAppbar(
|
||||
deviceName: deviceModel!.name!,
|
||||
deviceUuid: deviceModel!.uuid!,
|
||||
),
|
||||
body: Container(
|
||||
width: MediaQuery.sizeOf(context).width,
|
||||
|
||||
Reference in New Issue
Block a user