mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 20:57:36 +02:00
refactor: apply changes according to Dart
trailing commas
This commit is contained in:
@ -39,14 +39,18 @@ class InstallerView extends StatelessWidget {
|
||||
visible: !model.hasErrors,
|
||||
child: IconButton.filledTonal(
|
||||
tooltip: FlutterI18n.translate(
|
||||
context, 'installerView.exportApkButtonTooltip'),
|
||||
context,
|
||||
'installerView.exportApkButtonTooltip',
|
||||
),
|
||||
icon: const Icon(Icons.save),
|
||||
onPressed: () => model.onButtonPressed(0),
|
||||
),
|
||||
),
|
||||
IconButton.filledTonal(
|
||||
tooltip: FlutterI18n.translate(
|
||||
context, 'installerView.exportLogButtonTooltip'),
|
||||
context,
|
||||
'installerView.exportLogButtonTooltip',
|
||||
),
|
||||
icon: const Icon(Icons.post_add),
|
||||
onPressed: () => model.onButtonPressed(1),
|
||||
),
|
||||
|
Reference in New Issue
Block a user