18 lines
474 B
Dart
18 lines
474 B
Dart
|
|
import 'package:cb_prestige_qr/app/theme/app_theme.dart';
|
||
|
|
import 'package:cb_prestige_qr/features/auth/presentation/views/login_view.dart';
|
||
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
class MyApp extends StatelessWidget {
|
||
|
|
const MyApp({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return MaterialApp(
|
||
|
|
title: 'CB Prestige Banking',
|
||
|
|
debugShowCheckedModeBanner: false,
|
||
|
|
theme: AppTheme.dark(),
|
||
|
|
home: const LoginView(),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|