flutter_profile/example/lib/utils/example_profile_service.dart

26 lines
511 B
Dart
Raw Normal View History

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