22 lines
455 B
Dart
22 lines
455 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'core/theme/app_theme.dart';
|
||
|
|
import 'core/router/app_router.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
runApp(const LinksyApp());
|
||
|
|
}
|
||
|
|
|
||
|
|
class LinksyApp extends StatelessWidget {
|
||
|
|
const LinksyApp({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return MaterialApp.router(
|
||
|
|
title: 'Linksy',
|
||
|
|
debugShowCheckedModeBanner: false,
|
||
|
|
theme: AppTheme.light,
|
||
|
|
routerConfig: appRouter,
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|