feat: Update translations, fix scrolling on all pages

This commit is contained in:
Anton Stubenbord
2023-02-22 18:14:02 +01:00
parent 44d9b74fb3
commit a8a41b38a8
13 changed files with 813 additions and 697 deletions

View File

@@ -0,0 +1,27 @@
import 'package:flutter/material.dart';
class CustomizableSliverPersistentHeaderDelegate
extends SliverPersistentHeaderDelegate {
@override
final double minExtent;
@override
final double maxExtent;
final Widget child;
CustomizableSliverPersistentHeaderDelegate({
required this.child,
required this.minExtent,
required this.maxExtent,
});
@override
Widget build(
BuildContext context, double shrinkOffset, bool overlapsContent) {
return child;
}
@override
bool shouldRebuild(CustomizableSliverPersistentHeaderDelegate oldDelegate) {
return false;
}
}