mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix: Use correct title size for bottom sheet (#1687)
Co-authored-by: aAbed <aabedhkhan@gmail.com>
This commit is contained in:
parent
bdfeda23b6
commit
34365239c1
0
assets/i18n/en_US.json
Normal file
0
assets/i18n/en_US.json
Normal file
@ -270,11 +270,11 @@
|
|||||||
},
|
},
|
||||||
"contributorsView": {
|
"contributorsView": {
|
||||||
"widgetTitle": "Contributors",
|
"widgetTitle": "Contributors",
|
||||||
"patcherContributors": "Patcher contributors",
|
"patcherContributors": "ReVanced Patcher",
|
||||||
"patchesContributors": "Patches contributors",
|
"patchesContributors": "ReVanced Patches",
|
||||||
"integrationsContributors": "Integrations contributors",
|
"integrationsContributors": "ReVanced Integrations",
|
||||||
"cliContributors": "CLI contributors",
|
"cliContributors": "ReVanced CLI",
|
||||||
"managerContributors": "Manager contributors"
|
"managerContributors": "ReVanced Manager"
|
||||||
},
|
},
|
||||||
"installErrorDialog": {
|
"installErrorDialog": {
|
||||||
"mount_version_mismatch": "Version mismatch",
|
"mount_version_mismatch": "Version mismatch",
|
||||||
|
@ -5,7 +5,11 @@ import 'package:revanced_manager/gen/strings.g.dart';
|
|||||||
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
|
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
|
||||||
|
|
||||||
class UpdateConfirmationSheet extends StatelessWidget {
|
class UpdateConfirmationSheet extends StatelessWidget {
|
||||||
const UpdateConfirmationSheet({super.key, required this.isPatches, this.changelog = false});
|
const UpdateConfirmationSheet({
|
||||||
|
super.key,
|
||||||
|
required this.isPatches,
|
||||||
|
this.changelog = false,
|
||||||
|
});
|
||||||
|
|
||||||
final bool isPatches;
|
final bool isPatches;
|
||||||
final bool changelog;
|
final bool changelog;
|
||||||
@ -38,70 +42,75 @@ class UpdateConfirmationSheet extends StatelessWidget {
|
|||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
if (!changelog)
|
if (!changelog)
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(
|
padding: const EdgeInsets.only(
|
||||||
top: 40.0,
|
top: 40.0,
|
||||||
left: 24.0,
|
left: 24.0,
|
||||||
right: 24.0,
|
right: 24.0,
|
||||||
bottom: 20.0,
|
bottom: 20.0,
|
||||||
),
|
),
|
||||||
child: Row(
|
child: Row(
|
||||||
children: [
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
isPatches
|
isPatches
|
||||||
? t.homeView.updatePatchesSheetTitle
|
? t.homeView.updatePatchesSheetTitle
|
||||||
: t.homeView.updateSheetTitle,
|
: t.homeView.updateSheetTitle,
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 24,
|
fontSize: 24,
|
||||||
fontWeight: FontWeight.bold,
|
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),
|
const SizedBox(height: 4.0),
|
||||||
Text(
|
Row(
|
||||||
snapshot.data!['tag_name'] ?? 'Unknown',
|
children: [
|
||||||
style: TextStyle(
|
Icon(
|
||||||
fontSize: 20,
|
Icons.new_releases_outlined,
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.colorScheme
|
.colorScheme
|
||||||
.secondary,
|
.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,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
FilledButton(
|
||||||
FilledButton(
|
onPressed: () {
|
||||||
onPressed: () {
|
Navigator.of(context).pop();
|
||||||
Navigator.of(context).pop();
|
isPatches
|
||||||
isPatches
|
? model.updatePatches(context)
|
||||||
? model.updatePatches(context)
|
: model.updateManager(context);
|
||||||
: model.updateManager(context);
|
},
|
||||||
},
|
|
||||||
child: Text(t.updateButton),
|
child: Text(t.updateButton),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(top: 12.0, left: 24.0, bottom: 12.0),
|
padding: const EdgeInsets.only(
|
||||||
|
top: 12.0,
|
||||||
|
left: 24.0,
|
||||||
|
bottom: 12.0,
|
||||||
|
),
|
||||||
child: Text(
|
child: Text(
|
||||||
t.homeView.updateChangelogTitle,
|
t.homeView.updateChangelogTitle,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 20,
|
fontSize: changelog ? 24 : 20,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
color:
|
color:
|
||||||
Theme.of(context).colorScheme.onSecondaryContainer,
|
Theme.of(context).colorScheme.onSecondaryContainer,
|
||||||
@ -115,6 +124,11 @@ class UpdateConfirmationSheet extends StatelessWidget {
|
|||||||
borderRadius: BorderRadius.circular(12.0),
|
borderRadius: BorderRadius.circular(12.0),
|
||||||
),
|
),
|
||||||
child: Markdown(
|
child: Markdown(
|
||||||
|
styleSheet: MarkdownStyleSheet(
|
||||||
|
a: TextStyle(
|
||||||
|
color: Theme.of(context).colorScheme.primary,
|
||||||
|
),
|
||||||
|
),
|
||||||
shrinkWrap: true,
|
shrinkWrap: true,
|
||||||
physics: const NeverScrollableScrollPhysics(),
|
physics: const NeverScrollableScrollPhysics(),
|
||||||
padding: const EdgeInsets.all(20.0),
|
padding: const EdgeInsets.all(20.0),
|
||||||
|
Loading…
Reference in New Issue
Block a user