19 lines
360 B
Dart
19 lines
360 B
Dart
|
import 'package:graphs/pages/drawing_page.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
void main() {
|
||
|
runApp(const MyApp());
|
||
|
}
|
||
|
|
||
|
class MyApp extends StatelessWidget {
|
||
|
const MyApp({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return const MaterialApp(
|
||
|
title: "Graphs",
|
||
|
home: DrawingPage(),
|
||
|
);
|
||
|
}
|
||
|
}
|