PullDating / FlutterApplication

The frontend flutter application, contains code for IOS, Android and web
GNU Affero General Public License v3.0
3 stars 1 forks source link

Create Account #5

Closed WilliamDormer closed 2 years ago

WilliamDormer commented 2 years ago

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.

ethanblake4 commented 2 years ago
WilliamDormer commented 2 years ago

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?

ethanblake4 commented 2 years ago

Just like this: final accountCreationProfile = StateProvider((ref) => Profile());

you can put it in pull_common in something like src/model/provider/create_account.dart

WilliamDormer commented 2 years ago

Creating a more specific issue to target the connection to the backend.