preload user profile picture

This commit is contained in:
2024-08-29 11:30:10 +02:00
parent c7c1132447
commit aba7bbce27
11 changed files with 77 additions and 15 deletions

View File

@@ -3,8 +3,12 @@ import 'package:patient_manager/main.dart';
class MIHAppBar extends StatefulWidget implements PreferredSizeWidget {
final String barTitle;
const MIHAppBar({super.key, required this.barTitle});
final ImageProvider<Object>? propicFile;
const MIHAppBar({
super.key,
required this.barTitle,
required this.propicFile,
});
@override
State<MIHAppBar> createState() => _MIHAppBarState();