mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-08 23:18:16 -07:00
chore: Lots of bug fixes and navigation improvements
This commit is contained in:
parent
9bb5e81812
commit
92d5391b93
35 changed files with 513 additions and 455 deletions
|
|
@ -24,7 +24,7 @@ class ItemLogo extends StatelessWidget {
|
|||
child: Text(
|
||||
item.parentBaseModel.name,
|
||||
textAlign: TextAlign.start,
|
||||
maxLines: 3,
|
||||
maxLines: 2,
|
||||
overflow: TextOverflow.fade,
|
||||
style: textStyle ??
|
||||
Theme.of(context).textTheme.headlineLarge?.copyWith(
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ class _PosterImageState extends ConsumerState<PosterImage> {
|
|||
}
|
||||
|
||||
Future<void> navigateToDetails() async {
|
||||
await widget.poster.navigateTo(context);
|
||||
await widget.poster.navigateTo(context, ref: ref);
|
||||
}
|
||||
|
||||
final posterRadius = FladderTheme.smallShape.borderRadius;
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ class _PosterRowState extends ConsumerState<PosterRow> {
|
|||
contentPadding: widget.contentPadding,
|
||||
label: widget.label,
|
||||
onLabelClick: widget.onLabelClick,
|
||||
dominantRatio: dominantRatio,
|
||||
items: widget.posters,
|
||||
itemBuilder: (context, index) {
|
||||
final poster = widget.posters[index];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue