2022-09-21 11:09:24 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2022-09-21 14:37:16 +02:00
|
|
|
import 'package:flutter_profile/flutter_profile.dart';
|
2022-09-21 11:09:24 +02:00
|
|
|
|
|
|
|
class ExampleProfileService extends ProfileService {
|
|
|
|
ExampleProfileService();
|
|
|
|
|
|
|
|
@override
|
2022-09-21 14:08:36 +02:00
|
|
|
void pageBottomAction() {
|
|
|
|
debugPrint('Bottom page action');
|
2022-09-21 11:09:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2022-09-21 14:08:36 +02:00
|
|
|
void editProfile(
|
|
|
|
User user,
|
2022-09-21 11:09:24 +02:00
|
|
|
String key,
|
|
|
|
String value,
|
|
|
|
) {
|
|
|
|
debugPrint('Editing key: $key with $value');
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> uploadImage(BuildContext context) async {
|
|
|
|
debugPrint('Updating avatar');
|
|
|
|
}
|
|
|
|
}
|