Skip to content

Commit

Permalink
Commit from GitHub Actions (Forui Samples Presubmit)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daviiddoo committed Jul 25, 2024
1 parent 09136f9 commit 996ed1d
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions samples/lib/widgets/avatar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ class AvatarPage extends SampleScaffold {

@override
Widget child(BuildContext context) => Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
FAvatar(
image: AssetImage(path('avatar.png')),
placeholder: const Text('MN'),
),
const SizedBox(width: 10),
FAvatar(
image: const AssetImage(''),
placeholder: const Text('MN'),
),
const SizedBox(width: 10),
FAvatar(
image: const AssetImage(''),
),
],
);
mainAxisAlignment: MainAxisAlignment.center,
children: [
FAvatar(
image: AssetImage(path('avatar.png')),
placeholder: const Text('MN'),
),
const SizedBox(width: 10),
FAvatar(
image: const AssetImage(''),
placeholder: const Text('MN'),
),
const SizedBox(width: 10),
FAvatar(
image: const AssetImage(''),
),
],
);
}

@RoutePage()
Expand All @@ -43,17 +43,17 @@ class AvatarRawPage extends SampleScaffold {

@override
Widget child(BuildContext context) => Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
FAvatar.raw(),
const SizedBox(width: 10),
FAvatar.raw(
child: FAssets.icons.baby(
colorFilter: ColorFilter.mode(theme.colorScheme.mutedForeground, BlendMode.srcIn),
mainAxisAlignment: MainAxisAlignment.center,
children: [
FAvatar.raw(),
const SizedBox(width: 10),
FAvatar.raw(
child: FAssets.icons.baby(
colorFilter: ColorFilter.mode(theme.colorScheme.mutedForeground, BlendMode.srcIn),
),
),
),
const SizedBox(width: 10),
FAvatar.raw(child: const Text('MN')),
],
);
const SizedBox(width: 10),
FAvatar.raw(child: const Text('MN')),
],
);
}

0 comments on commit 996ed1d

Please sign in to comment.