Initialized the project

This commit is contained in:
2026-07-03 12:35:59 +03:00
parent e559542020
commit 2cecb059f2
132 changed files with 5067 additions and 21 deletions
+67
View File
@@ -0,0 +1,67 @@
import 'package:flutter/material.dart';
import 'floating_toolbar.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Cipher Disk',
theme: ThemeData(colorScheme: .fromSeed(seedColor: Colors.yellow)),
home: const MyHomePage(title: 'Cipher Disk'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
Color primColor = Theme.of(context).colorScheme.secondary;
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Column(
mainAxisAlignment: .center,
children: [
const Text('You have pushed the button this many times:'),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
floatingActionButton: FloatingToolbar(primColor: primColor),
);
}
}