mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix: Replace Spacer with Expanded to avoid overflow (#1791)
This commit is contained in:
parent
e85ed5a8e3
commit
6f70a07970
@ -20,8 +20,9 @@ class SManageApiUrl extends BaseViewModel {
|
||||
builder: (context) => AlertDialog(
|
||||
title: Row(
|
||||
children: <Widget>[
|
||||
Text(t.settingsView.apiURLLabel),
|
||||
const Spacer(),
|
||||
Expanded(
|
||||
child: Text(t.settingsView.apiURLLabel),
|
||||
),
|
||||
IconButton(
|
||||
icon: const Icon(Icons.manage_history_outlined),
|
||||
onPressed: () => showApiUrlResetDialog(context),
|
||||
|
@ -21,8 +21,9 @@ class SManageKeystorePassword extends BaseViewModel {
|
||||
builder: (context) => AlertDialog(
|
||||
title: Row(
|
||||
children: <Widget>[
|
||||
Text(t.settingsView.selectKeystorePassword),
|
||||
const Spacer(),
|
||||
Expanded(
|
||||
child: Text(t.settingsView.selectKeystorePassword),
|
||||
),
|
||||
IconButton(
|
||||
icon: const Icon(Icons.manage_history_outlined),
|
||||
onPressed: () => _keystorePasswordController.text =
|
||||
|
@ -29,8 +29,9 @@ class SManageSources extends BaseViewModel {
|
||||
builder: (context) => AlertDialog(
|
||||
title: Row(
|
||||
children: <Widget>[
|
||||
Text(t.settingsView.sourcesLabel),
|
||||
const Spacer(),
|
||||
Expanded(
|
||||
child: Text(t.settingsView.sourcesLabel),
|
||||
),
|
||||
IconButton(
|
||||
icon: const Icon(Icons.manage_history_outlined),
|
||||
onPressed: () => showResetConfirmationDialog(context),
|
||||
|
Loading…
Reference in New Issue
Block a user