diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..aedbf1a --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,14 @@ +name: Anime-Kanri-Compilation + +on: + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' + +jobs: + build-windows: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + - name: Build-Windows \ No newline at end of file diff --git a/lib/screens/more_screens.dart/settings_screen.dart b/lib/screens/more_screens.dart/settings_screen.dart index aee9224..87b18f7 100644 --- a/lib/screens/more_screens.dart/settings_screen.dart +++ b/lib/screens/more_screens.dart/settings_screen.dart @@ -8,18 +8,19 @@ class SettingsScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( - appBar: AppBar( - title: const Text('Settings'), - centerTitle: true, - ), - body: const Column( - children: [ - SimpleIconButton( - icon: Icons.download, - label: 'Downloads', - page: DownloadsSettingsScreen(), - ), - ], - )); + appBar: AppBar( + title: const Text('Settings'), + centerTitle: true, + ), + body: const Column( + children: [ + SimpleIconButton( + icon: Icons.download, + label: 'Downloads', + page: DownloadsSettingsScreen(), + ), + ], + ), + ); } }