mirror of
https://github.com/koloideal/Casha.git
synced 2026-06-10 02:15:29 +03:00
18 lines
376 B
Dart
18 lines
376 B
Dart
import 'package:flutter/material.dart';
|
|
import 'router.dart';
|
|
import 'theme.dart';
|
|
|
|
class App extends StatelessWidget {
|
|
const App({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp.router(
|
|
title: 'Finance Tracker',
|
|
debugShowCheckedModeBanner: false,
|
|
theme: buildAppTheme(),
|
|
routerConfig: appRouter,
|
|
);
|
|
}
|
|
}
|