2024-10-21 16:34:25 +04:00
|
|
|
import 'package:flutter/material.dart';
|
2024-10-22 13:59:52 +04:00
|
|
|
import 'package:fl_chart/fl_chart.dart';
|
2024-11-02 21:09:05 +04:00
|
|
|
import 'presentation/StockCategory.dart';
|
|
|
|
import 'package:flutter_project/presentation/home_page/home_page.dart';
|
2024-10-21 16:34:25 +04:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2024-10-22 00:36:13 +04:00
|
|
|
@override
|
2024-10-21 16:34:25 +04:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
2024-10-22 00:36:13 +04:00
|
|
|
title: 'Gerimovich demo',
|
2024-10-21 16:34:25 +04:00
|
|
|
theme: ThemeData(
|
2024-10-22 00:36:13 +04:00
|
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.red),
|
2024-10-21 16:34:25 +04:00
|
|
|
useMaterial3: true,
|
|
|
|
),
|
2024-10-22 13:59:52 +04:00
|
|
|
home: const MyHomePage(title: 'Gerimovich Ilya Maximovich'),
|
2024-10-21 16:34:25 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|