TetraStats/lib/views/calc_view.dart

22 lines
496 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class CalcView extends StatefulWidget {
const CalcView({Key? key}) : super(key: key);
@override
State<StatefulWidget> createState() => CalcState();
}
class CalcState extends State<CalcView> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Stats Calculator"),
),
backgroundColor: Colors.black,
body: const SafeArea(child: Text("Next build")),
);
}
}