Initial commit

This commit is contained in:
Искандар Р. Шабаев
2022-07-03 20:52:22 +03:00
commit b7c7e3fd69
146 changed files with 4309 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
import 'tokenization_screen.dart';
class App extends StatelessWidget {
const App({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: "Example app",
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const TokenizationScreen(),
);
}
}