Revert "add fab insets avoid overlapping"

This reverts commit 5230d3cb6b.
This commit is contained in:
Fabian Freund
2026-02-27 20:53:30 +01:00
parent 51906ef61f
commit f99484b0fa
12 changed files with 229 additions and 340 deletions
@@ -26,7 +26,6 @@ import 'package:weblibre/core/filesystem.dart';
import 'package:weblibre/core/routing/routes.dart';
import 'package:weblibre/features/user/domain/repositories/profile.dart';
import 'package:weblibre/presentation/widgets/failure_widget.dart';
import 'package:weblibre/presentation/widgets/floating_action_button_inset.dart';
class ProfileListScreen extends HookConsumerWidget {
const ProfileListScreen({super.key});
@@ -50,9 +49,6 @@ class ProfileListScreen extends HookConsumerWidget {
body: usersAsync.when(
skipLoadingOnReload: true,
data: (profiles) => ListView.builder(
padding: EdgeInsets.only(
bottom: floatingActionButtonBottomInset(context),
),
itemCount: profiles.length,
itemBuilder: (context, index) {
final profile = profiles[index];