Skip to content

Commit

Permalink
chore: Bump yaru to 5.3.1 (#1848)
Browse files Browse the repository at this point in the history
Accidentally merged the other PR with the dependency override (and a
missed name change).
  • Loading branch information
spydon authored Oct 18, 2024
1 parent 460a05a commit e9d35d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/app_center/lib/manage/manage_snap_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ManageSnapTile extends StatelessWidget {
const radius = Radius.circular(8);
final actionButtons = Align(
alignment: Alignment.centerRight,
child: SnapActionButtons(snapName: snap.name, isPrimary: false),
child: SnapActionsButton(snapName: snap.name, isPrimary: false),
);

return DecoratedBox(
Expand Down
4 changes: 2 additions & 2 deletions packages/app_center/lib/manage/snap_actions_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:yaru/yaru.dart';

class SnapActionButtons extends ConsumerWidget {
const SnapActionButtons({
class SnapActionsButton extends ConsumerWidget {
const SnapActionsButton({
required this.snapName,
required this.isPrimary,
super.key,
Expand Down
2 changes: 1 addition & 1 deletion packages/app_center/lib/snapd/snap_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class _SnapView extends StatelessWidget {
const SizedBox(width: kSpacing),
],
Flexible(
child: SnapActionButtons(
child: SnapActionsButton(
snapName: snapData.name,
isPrimary: true,
),
Expand Down
2 changes: 1 addition & 1 deletion packages/app_center/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies:
ubuntu_widgets: ^0.7.1
url_launcher: ^6.3.0
xdg_directories: ^1.0.4
yaru: ^5.3.0
yaru: ^5.3.1
yaru_test: ^0.2.0
yaru_window: ^0.2.1

Expand Down

0 comments on commit e9d35d2

Please sign in to comment.