adding tabs and create widget

This commit is contained in:
ashrafzarkanisala
2024-11-13 12:09:31 +03:00
parent d3e758ef3a
commit a6e2681b6a
12 changed files with 252 additions and 81 deletions

View File

@ -0,0 +1,10 @@
import 'package:flutter/material.dart';
class CreateNewRoutineView extends StatelessWidget {
const CreateNewRoutineView({super.key});
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}