profile_service_provider.dart 416 B

12345678910111213
  1. import 'package:flutter/material.dart';
  2. import 'package:hooks_riverpod/hooks_riverpod.dart';
  3. import 'package:riverpod_annotation/riverpod_annotation.dart';
  4. import 'package:router/componentRouter/profile_service.dart';
  5. import 'profile_component_service_impl.dart';
  6. part 'profile_service_provider.g.dart';
  7. @Riverpod(keepAlive: true)
  8. ProfileService profileService(Ref ref) {
  9. return ProfileComponentServiceImpl();
  10. }