start minimal

This commit is contained in:
Mohamed Nouffer
2023-06-02 10:50:56 +05:30
parent 08332d45d4
commit a358f65853
54 changed files with 467 additions and 1327 deletions

View File

@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
import 'package:rogapp/theme/theme.dart';
class UIs{
static AppBar appBar(){
return AppBar(
title: const Icon(
Icons.access_alarm,
size:30,
color: Pallete.WHITE_COLOR,
),
centerTitle: true,
);
}
}