Files
rog_app/lib/common/ui/widgets/uis.dart
Mohamed Nouffer a358f65853 start minimal
2023-06-02 10:50:56 +05:30

15 lines
296 B
Dart

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