15 lines
502 B
Dart
15 lines
502 B
Dart
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.'))),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|