Skip to content

Commit

Permalink
Merge pull request #243 from DattatreyaReddy/volume-tap
Browse files Browse the repository at this point in the history
Version Bump
  • Loading branch information
DattatreyaReddy authored Oct 21, 2023
2 parents 859f1cc + 3d7c4f5 commit 74364b6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ class ExtensionListTile extends HookConsumerWidget {

class ExtensionListTileTailing extends StatelessWidget {
const ExtensionListTileTailing({
Key? key,
super.key,
required this.extension,
required this.repository,
required this.isLoading,
required this.ref,
required this.refresh,
}) : super(key: key);
});

final Extension extension;
final ExtensionRepository repository;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import '../../../domain/source_preference_prop/source_preference_prop.dart';

class SourcePreferenceToWidget extends StatelessWidget {
const SourcePreferenceToWidget({
Key? key,
super.key,
required this.sourcePreference,
required this.onChanged,
}) : super(key: key);
});

final SourcePreference sourcePreference;
final ValueChanged<SourcePreference> onChanged;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,9 @@ class MangaDescription extends HookConsumerWidget {
runSpacing: 8,
// alignment: WrapAlignment.spaceBetween,
children: [
...?manga.genre
?.map<Widget>(
(e) => Chip(label: Text(e)),
)
.toList()
...?manga.genre?.map<Widget>(
(e) => Chip(label: Text(e)),
)
],
),
)
Expand All @@ -152,14 +150,12 @@ class MangaDescription extends HookConsumerWidget {
scrollDirection: Axis.horizontal,
child: Row(
children: [
...?manga.genre
?.map<Widget>(
(e) => Padding(
padding: KEdgeInsets.h4.size,
child: Chip(label: Text(e)),
),
)
.toList()
...?manga.genre?.map<Widget>(
(e) => Padding(
padding: KEdgeInsets.h4.size,
child: Chip(label: Text(e)),
),
)
],
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/widgets/custom_circular_progress_indicator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CenterSorayomiShimmerIndicator extends StatelessWidget {
}

class SorayomiShimmerIndicator extends StatelessWidget {
const SorayomiShimmerIndicator({Key? key}) : super(key: key);
const SorayomiShimmerIndicator({super.key});

@override
Widget build(BuildContext context) {
Expand Down
8 changes: 4 additions & 4 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,10 @@ packages:
dependency: "direct dev"
description:
name: flutter_lints
sha256: a25a15ebbdfc33ab1cd26c63a6ee519df92338a9c10f122adda92938253bef04
sha256: ad76540d21c066228ee3f9d1dad64a9f7e46530e8bb7c85011a88bc1fd874bc5
url: "https://pub.dev"
source: hosted
version: "2.0.3"
version: "3.0.0"
flutter_localizations:
dependency: "direct main"
description: flutter
Expand Down Expand Up @@ -641,10 +641,10 @@ packages:
dependency: "direct dev"
description:
name: lints
sha256: "0a217c6c989d21039f1498c3ed9f3ed71b354e69873f13a8dfc3c9fe76f1b452"
sha256: cbf8d4b858bb0134ef3ef87841abdf8d63bfc255c266b7bf6b39daa1085c4290
url: "https://pub.dev"
source: hosted
version: "2.1.1"
version: "3.0.0"
logging:
dependency: transitive
description:
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: tachidesk_sorayomi
description: A new Flutter frontend for Tachidesk.

publish_to: "none"
version: 0.5.16+1
version: 0.5.17+1

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down Expand Up @@ -50,14 +50,14 @@ dev_dependencies:
# flutter_flavorizr: ^2.1.5
flutter_gen_runner: ^5.1.0+1
flutter_launcher_icons: ^0.13.0
flutter_lints: ^2.0.1
flutter_lints: ^3.0.0
flutter_native_splash: ^2.2.14
flutter_test:
sdk: flutter
freezed: ^2.2.1
go_router_builder: ^2.0.0
json_serializable: ^6.5.4
lints: ^2.0.1
lints: ^3.0.0
riverpod_generator: ^2.0.0

flutter:
Expand Down

0 comments on commit 74364b6

Please sign in to comment.