Skip to content

Commit

Permalink
chore: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
ice-alcides committed Dec 26, 2024
1 parent c8017c2 commit 4aae7f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions lib/app/features/gallery/data/models/album_data.c.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ part 'album_data.c.freezed.dart';
@freezed
class AlbumData with _$AlbumData {
const factory AlbumData({
required String id,
required String name,
required int assetCount,
required String id,
required String name,
required int assetCount,
@Default(false) bool isAll,
}) = _AlbumData;

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import 'package:ion/app/extensions/extensions.dart';

class ShimmerLoadingCell extends StatelessWidget {
const ShimmerLoadingCell({super.key, this.dimension});

final double? dimension;

@override
Expand Down
3 changes: 2 additions & 1 deletion lib/app/router/feed_routes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ class FeedRoutes {
TypedGoRoute<SharePostModalRoute>(path: 'share-post/:postId'),
TypedGoRoute<CreatePostRoute>(path: 'create-post'),
TypedGoRoute<CreateArticleRoute>(path: 'create-article'),
TypedGoRoute<MediaPickerRoute>(path: 'media-picker',
TypedGoRoute<MediaPickerRoute>(
path: 'media-picker',
routes: [
TypedGoRoute<AlbumSelectionRoute>(path: 'album-selection'),
],
Expand Down

0 comments on commit 4aae7f9

Please sign in to comment.