basic structure with material 3

This commit is contained in:
Tito Arrigo
2023-09-27 13:24:31 +02:00
parent e793631ab0
commit 416c230a33
3 changed files with 37 additions and 3 deletions

29
lib/testUI.dart Normal file
View File

@@ -0,0 +1,29 @@
import 'package:flutter/material.dart';
class TestUI extends StatefulWidget {
const TestUI({super.key});
@override
State<TestUI> createState() => _TestUIState();
}
class _TestUIState extends State<TestUI> {
int _test = 0;
void _onPressed() {
setState(() {
_test = 1;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(children: [
FloatingActionButton(onPressed: _onPressed),
Text('$_test'),
],),
),
);
}
}