push bottom sheet design of the scenes

This commit is contained in:
ashrafzarkanisala
2024-06-12 21:06:27 +03:00
parent 17e9826b21
commit 8c8e46f250
10 changed files with 135 additions and 172 deletions

View 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,
);
}
}