16 lines
337 B
Dart
16 lines
337 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,
|
|
),
|
|
automaticallyImplyLeading:false,
|
|
centerTitle: true,
|
|
);
|
|
}
|
|
} |