diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-17 15:31:16 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-17 15:31:16 +0300 |
| commit | c11b7c145fc1b2db6c1ed29a7abd739d0f6cbf3b (patch) | |
| tree | 4db8478fded8f3e1ad832b2788f6f82888a8f3ad /player-android/lib/main.dart | |
| parent | 914bd7cd6aa14e839332a98d91c30b19865b0cf2 (diff) | |
Add player-android/ Flutter skeleton
Diffstat (limited to 'player-android/lib/main.dart')
| -rw-r--r-- | player-android/lib/main.dart | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/player-android/lib/main.dart b/player-android/lib/main.dart new file mode 100644 index 0000000..1feb6e0 --- /dev/null +++ b/player-android/lib/main.dart @@ -0,0 +1,16 @@ +import 'package:flutter/material.dart'; + +void main() => runApp(const PlayerAndroidApp()); + +class PlayerAndroidApp extends StatelessWidget { + const PlayerAndroidApp({super.key}); + + @override + Widget build(BuildContext context) { + return const MaterialApp( + home: Scaffold( + body: Center(child: Text('Player Android')), + ), + ); + } +} |
