15 lines
355 B
Dart
15 lines
355 B
Dart
import 'package:aman_kassa_flutter/shared/app_colors.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class ProductAddBottomSheet extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
color: whiteColor
|
|
),
|
|
child: Text('ProductAddBottomSheet'),
|
|
);
|
|
}
|
|
}
|