Skip to content

Commit

Permalink
bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
SakshhamTheCoder committed Feb 9, 2022
1 parent 87bb3e8 commit 995f5c2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -44,3 +44,6 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release

*.iss
Installers/script.iss
Binary file modified Installers/Setup_Youtuber_Downloader.exe
Binary file not shown.
5 changes: 2 additions & 3 deletions lib/main.dart
Expand Up @@ -160,7 +160,7 @@ class _YoutubeDownloaderState extends State<YoutubeDownloader> {
actions: <Widget>[
MaterialButton(
minWidth: 300,
padding: EdgeInsets.all(20),
padding: const EdgeInsets.all(20),
color: Colors.orange.shade300,
child: const Text(
'OK',
Expand Down Expand Up @@ -192,7 +192,6 @@ class _YoutubeDownloaderState extends State<YoutubeDownloader> {
await fileStream.flush();
await fileStream.close();
Navigator.pop(dialogContext);
print("sed");
await showDialog(
context: context,
builder: (BuildContext context) {
Expand Down Expand Up @@ -228,7 +227,7 @@ class _YoutubeDownloaderState extends State<YoutubeDownloader> {
actions: <Widget>[
MaterialButton(
minWidth: 300,
padding: EdgeInsets.all(20),
padding: const EdgeInsets.all(20),
color: Colors.orange.shade300,
child: const Text(
'OK',
Expand Down

0 comments on commit 995f5c2

Please sign in to comment.