Release version 1.0.0
This commit is contained in:
20
lib/main.dart.old2
Normal file
20
lib/main.dart.old2
Normal file
@@ -0,0 +1,20 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() {
|
||||
runApp(MaterialApp(home: Home()));
|
||||
}
|
||||
|
||||
class Home extends StatelessWidget {
|
||||
const Home({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("Fuel Stats"),
|
||||
backgroundColor: Colors.blue[700],
|
||||
),
|
||||
body: Column(children: [Text("vim")]),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user