mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
push bottom sheet design of the scenes
This commit is contained in:
16
lib/features/shared_widgets/light_divider.dart
Normal file
16
lib/features/shared_widgets/light_divider.dart
Normal file
@ -0,0 +1,16 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:syncrow_app/utils/resource_manager/color_manager.dart';
|
||||
|
||||
class LightDivider extends StatelessWidget {
|
||||
const LightDivider({
|
||||
super.key,
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Divider(
|
||||
color: ColorsManager.greyColor,
|
||||
thickness: 0.3,
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user