Initialize FishIQ development foundation
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() => runApp(const FishIQApp());
|
||||
|
||||
class FishIQApp extends StatelessWidget {
|
||||
const FishIQApp({super.key});
|
||||
@override
|
||||
Widget build(BuildContext context) => MaterialApp(
|
||||
title: 'FishIQ',
|
||||
theme: ThemeData(colorScheme: ColorScheme.fromSeed(seedColor: const Color(0xFF197457), brightness: Brightness.dark)),
|
||||
home: Scaffold(appBar: AppBar(title: const Text('FishIQ')), body: const Center(child: Text('Plan smarter. Fish better.'))),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user