-
-
Notifications
You must be signed in to change notification settings - Fork 748
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Changelog in update dialog (#551)
* add update confirmation dialog * fix loader placement
- Loading branch information
annon
authored
Nov 29, 2022
1 parent
9e8193a
commit 061e929
Showing
5 changed files
with
148 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
127 changes: 127 additions & 0 deletions
127
lib/ui/widgets/homeView/update_confirmation_dialog.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter_i18n/flutter_i18n.dart'; | ||
import 'package:flutter_markdown/flutter_markdown.dart'; | ||
import 'package:revanced_manager/app/app.locator.dart'; | ||
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart'; | ||
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart'; | ||
|
||
class UpdateConfirmationDialog extends StatelessWidget { | ||
const UpdateConfirmationDialog({Key? key}) : super(key: key); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
final HomeViewModel model = locator<HomeViewModel>(); | ||
|
||
return DraggableScrollableSheet( | ||
expand: false, | ||
initialChildSize: 0.5, | ||
snap: true, | ||
snapSizes: const [0.5], | ||
builder: (context, scrollController) => SingleChildScrollView( | ||
controller: scrollController, | ||
child: SafeArea( | ||
child: FutureBuilder<Map<String, dynamic>?>( | ||
future: model.getLatestManagerRelease(), | ||
builder: (context, snapshot) { | ||
if (!snapshot.hasData) { | ||
return const SizedBox( | ||
height: 300, | ||
child: Center( | ||
child: CircularProgressIndicator(), | ||
), | ||
); | ||
} | ||
|
||
return Column( | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: [ | ||
Padding( | ||
padding: const EdgeInsets.only( | ||
top: 40.0, left: 24.0, right: 24.0, bottom: 32.0), | ||
child: Row( | ||
children: [ | ||
Expanded( | ||
child: Column( | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: [ | ||
I18nText( | ||
'homeView.updateDialogTitle', | ||
child: const Text( | ||
"", | ||
style: TextStyle( | ||
fontSize: 24, | ||
fontWeight: FontWeight.bold), | ||
), | ||
), | ||
const SizedBox(height: 4.0), | ||
Row( | ||
children: [ | ||
Icon( | ||
Icons.new_releases_outlined, | ||
color: | ||
Theme.of(context).colorScheme.secondary, | ||
), | ||
const SizedBox(width: 8.0), | ||
Text( | ||
snapshot.data!["tag_name"] ?? "Unknown", | ||
style: TextStyle( | ||
fontSize: 20, | ||
fontWeight: FontWeight.w500, | ||
color: Theme.of(context) | ||
.colorScheme | ||
.secondary, | ||
), | ||
), | ||
], | ||
), | ||
], | ||
), | ||
), | ||
CustomMaterialButton( | ||
isExpanded: true, | ||
label: I18nText('updateButton'), | ||
onPressed: () { | ||
Navigator.of(context).pop(); | ||
model.updateManager(context); | ||
}, | ||
) | ||
], | ||
), | ||
), | ||
Padding( | ||
padding: const EdgeInsets.only(left: 24.0, bottom: 12.0), | ||
child: I18nText( | ||
'homeView.updateChangelogTitle', | ||
child: Text( | ||
"", | ||
style: TextStyle( | ||
fontSize: 20, | ||
fontWeight: FontWeight.w500, | ||
color: Theme.of(context) | ||
.colorScheme | ||
.onSecondaryContainer), | ||
), | ||
), | ||
), | ||
Container( | ||
margin: const EdgeInsets.symmetric(horizontal: 24.0), | ||
decoration: BoxDecoration( | ||
color: Theme.of(context).colorScheme.secondaryContainer, | ||
borderRadius: BorderRadius.circular(12.0), | ||
), | ||
child: Markdown( | ||
shrinkWrap: true, | ||
physics: const NeverScrollableScrollPhysics(), | ||
padding: const EdgeInsets.all(20.0), | ||
data: snapshot.data!["body"] ?? "", | ||
), | ||
), | ||
], | ||
); | ||
}, | ||
), | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters