Skip to content

Commit

Permalink
add some pipline
Browse files Browse the repository at this point in the history
  • Loading branch information
ALEZ-DEV committed Nov 20, 2023
1 parent de5f4f2 commit d640a2b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 13 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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
27 changes: 14 additions & 13 deletions lib/screens/more_screens.dart/settings_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
),
],
),
);
}
}

0 comments on commit d640a2b

Please sign in to comment.