Closed WilliamDormer closed 2 years ago
StateProvider
or StateNotifierProvider
.I added the freezed object, but I am unclear on how to expose it via riverpod. Is that within the pull_common somewhere or pull_flutter? Is there an example of a similar thing in our project already I can base it off?
Just like this:
final accountCreationProfile = StateProvider((ref) => Profile());
you can put it in pull_common
in something like src/model/provider/create_account.dart
Creating a more specific issue to target the connection to the backend.
A new user should be able to add a new account and populate it with the necessary information. The exact specifics have not been determined yet but the following will be needed:
Allows new users to join the platform and create user accounts.