initialized Routine Page

This commit is contained in:
Mohammad Salameh
2024-02-21 13:47:08 +03:00
parent cdfb778884
commit d5196fda45
33 changed files with 569 additions and 236 deletions

View File

@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
import 'package:syncrow_app/features/shared_widgets/text_widgets/body_small.dart';
class CardTitle extends StatelessWidget {
const CardTitle({
super.key,
required this.title,
});
final String title;
@override
Widget build(BuildContext context) {
return BodySmall(
text: title,
fontColor: Colors.grey,
fontSize: 12,
);
}
}