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

View File

@@ -1,6 +1,7 @@
import 'dart:ffi';
import 'package:flutter/material.dart';
import 'testUI.dart';
class Navigation extends StatefulWidget {
const Navigation({super.key});
@@ -11,9 +12,9 @@ class Navigation extends StatefulWidget {
class _NavigationState extends State<Navigation> {
int _selectedIndex = 1;
int _selectedIndex = 0;
static const List<Widget> _widgetOptions = <Widget>[
Text("Calendar"),
TestUI(),
Text("Inbox"),
Text("Notes"),
];