Build a User Management App with Flutter
This tutorial demonstrates how to build a basic user management app. The app authenticates and identifies the user, stores their profile information in the database, and allows the user to log in, update their profile details, and upload a profile photo. The app uses:
If you get stuck while working through this guide, refer to the full example on GitHub .
Before we start building we're going to set up our Database and API. This is as simple as starting a new Project in Supabase and then creating a "schema" inside the database.
Create a new project in the Supabase Dashboard.
Enter your project details.
Wait for the new database to launch.
Now we are going to set up the database schema. We can use the "User Management Starter" quickstart in the SQL Editor, or you can just copy/paste the SQL from below and run it yourself.
Dashboard SQL
Go to the SQL Editor page in the Dashboard.
Click User Management Starter .
Click Run .
You can easily pull the database schema down to your local project by running the db pull
command. Read the local development docs for detailed instructions.
supabase link --project-ref < project-i d >
# You can get <project-id> from your project's dashboard URL: https://supabase.com/dashboard/project/<project-id>
Now that you've created some database tables, you are ready to insert data using the auto-generated API.
We just need to get the Project URL and anon
key from the API settings.
Go to the API Settings page in the Dashboard.
Find your Project URL
, anon
, and service_role
keys on this page.
Let's start building the Flutter app from scratch.
We can use flutter create
to initialize
an app called supabase_quickstart
:
flutter create supabase_quickstart
Then let's install the only additional dependency: supabase_flutter
Copy and paste the following line in your pubspec.yaml to install the package:
Run flutter pub get
to install the dependencies.
Now that we have the dependencies installed let's setup deep links.
Setting up deep links is required to bring back the user to the app when they click on the magic link to sign in.
We can setup deep links with just a minor tweak on our Flutter application.
We have to use io.supabase.flutterquickstart
as the scheme. In this example, we will use login-callback
as the host for our deep link, but you can change it to whatever you would like.
First, add io.supabase.flutterquickstart://login-callback/
as a new redirect URL in the Dashboard.
That is it on Supabase's end and the rest are platform specific settings:
iOS Android Web
Edit the ios/Runner/Info.plist
file.
Add CFBundleURLTypes to enable deep linking:
<!-- Add this array for Deep Links -->
< key >CFBundleURLTypes</ key >
< key >CFBundleTypeRole</ key >
< key >CFBundleURLSchemes</ key >
< string >io.supabase.flutterquickstart</ string >
Main function#
Now that we have deep links ready let's initialize the Supabase client inside our main
function with the API credentials that you copied earlier . These variables will be exposed on the app, and that's completely fine since we have Row Level Security enabled on our Database.
import 'package:flutter/material.dart' ;
import 'package:supabase_flutter/supabase_flutter.dart' ;
Future < void > main () async {
await Supabase . initialize (
url : 'YOUR_SUPABASE_URL' ,
anonKey : 'YOUR_SUPABASE_ANON_KEY' ,
final supabase = Supabase .instance.client;
class MyApp extends StatelessWidget {
const MyApp ({ super .key});
Widget build ( BuildContext context) {
return const MaterialApp (title : 'Supabase Flutter' );
extension ContextExtension on BuildContext {
void showSnackBar ( String message, { bool isError = false }) {
ScaffoldMessenger . of ( this ). showSnackBar (
? Theme . of ( this ).colorScheme.error
: Theme . of ( this ).snackBarTheme.backgroundColor,
Notice that we have a showSnackBar
extension method that we will use to show snack bars in the app. You could define this method in a separate file and import it where needed, but for simplicity, we will define it here.
Set up a login page#
Let's create a Flutter widget to manage logins and sign ups. We will use Magic Links, so users can sign in with their email without using passwords.
Notice that this page sets up a listener on the user's auth state using onAuthStateChange
. A new event will fire when the user comes back to the app by clicking their magic link, which this page can catch and redirect the user accordingly.
lib/pages/ login_page.dart
import 'package:flutter/foundation.dart' ;
import 'package:flutter/material.dart' ;
import 'package:supabase_flutter/supabase_flutter.dart' ;
import 'package:supabase_quickstart/main.dart' ;
import 'package:supabase_quickstart/pages/account_page.dart' ;
class LoginPage extends StatefulWidget {
const LoginPage ({ super .key});
State < LoginPage > createState () => _LoginPageState ();
class _LoginPageState extends State < LoginPage > {
bool _redirecting = false ;
late final TextEditingController _emailController = TextEditingController ();
late final StreamSubscription < AuthState > _authStateSubscription;
Future < void > _signIn () async {
await supabase.auth. signInWithOtp (
email : _emailController.text. trim (),
kIsWeb ? null : 'io.supabase.flutterquickstart://login-callback/' ,
context. showSnackBar ( 'Check your email for a login link!' );
_emailController. clear ();
} on AuthException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
_authStateSubscription = supabase.auth.onAuthStateChange. listen (
if (_redirecting) return ;
final session = data.session;
Navigator . of (context). pushReplacement (
MaterialPageRoute (builder : (context) => const AccountPage ()),
if (error is AuthException ) {
context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
_emailController. dispose ();
_authStateSubscription. cancel ();
Widget build ( BuildContext context) {
appBar : AppBar (title : const Text ( 'Sign In' )),
padding : const EdgeInsets . symmetric (vertical : 18 , horizontal : 12 ),
const Text ( 'Sign in via the magic link with your email below' ),
const SizedBox (height : 18 ),
controller : _emailController,
decoration : const InputDecoration (labelText : 'Email' ),
const SizedBox (height : 18 ),
onPressed : _isLoading ? null : _signIn,
child : Text (_isLoading ? 'Sending...' : 'Send Magic Link' ),
Set up account page#
After a user is signed in we can allow them to edit their profile details and manage their account.
Let's create a new widget called account_page.dart
for that.
lib/pages/ account_page.dart"
import 'package:flutter/material.dart' ;
import 'package:supabase_flutter/supabase_flutter.dart' ;
import 'package:supabase_quickstart/main.dart' ;
import 'package:supabase_quickstart/pages/login_page.dart' ;
class AccountPage extends StatefulWidget {
const AccountPage ({ super .key});
State < AccountPage > createState () => _AccountPageState ();
class _AccountPageState extends State < AccountPage > {
final _usernameController = TextEditingController ();
final _websiteController = TextEditingController ();
/// Called once a user id is received within `onAuthenticated()`
Future < void > _getProfile () async {
final userId = supabase.auth.currentSession ! .user.id;
await supabase. from ( 'profiles' ). select (). eq ( 'id' , userId). single ();
_usernameController.text = (data[ 'username' ] ?? '' ) as String ;
_websiteController.text = (data[ 'website' ] ?? '' ) as String ;
_avatarUrl = (data[ 'avatar_url' ] ?? '' ) as String ;
} on PostgrestException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
/// Called when user taps `Update` button
Future < void > _updateProfile () async {
final userName = _usernameController.text. trim ();
final website = _websiteController.text. trim ();
final user = supabase.auth.currentUser;
'updated_at' : DateTime . now (). toIso8601String (),
await supabase. from ( 'profiles' ). upsert (updates);
if (mounted) context. showSnackBar ( 'Successfully updated profile!' );
} on PostgrestException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
Future < void > _signOut () async {
await supabase.auth. signOut ();
} on AuthException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
Navigator . of (context). pushReplacement (
MaterialPageRoute (builder : (_) => const LoginPage ()),
_usernameController. dispose ();
_websiteController. dispose ();
Widget build ( BuildContext context) {
appBar : AppBar (title : const Text ( 'Profile' )),
padding : const EdgeInsets . symmetric (vertical : 18 , horizontal : 12 ),
controller : _usernameController,
decoration : const InputDecoration (labelText : 'User Name' ),
const SizedBox (height : 18 ),
controller : _websiteController,
decoration : const InputDecoration (labelText : 'Website' ),
const SizedBox (height : 18 ),
onPressed : _loading ? null : _updateProfile,
child : Text (_loading ? 'Saving...' : 'Update' ),
const SizedBox (height : 18 ),
TextButton (onPressed : _signOut, child : const Text ( 'Sign Out' )),
Now that we have all the components in place, let's update lib/main.dart
.
The home
of the MaterialApp
, meaning the initial page shown to the user, will be the LoginPage
if the user is not authenticated, and the AccountPage
if the user is authenticated.
We also included some theming to make the app look a bit nicer.
import 'package:flutter/material.dart' ;
import 'package:supabase_flutter/supabase_flutter.dart' ;
import 'package:supabase_quickstart/pages/account_page.dart' ;
import 'package:supabase_quickstart/pages/login_page.dart' ;
Future < void > main () async {
await Supabase . initialize (
url : 'YOUR_SUPABASE_URL' ,
anonKey : 'YOUR_SUPABASE_ANON_KEY' ,
final supabase = Supabase .instance.client;
class MyApp extends StatelessWidget {
const MyApp ({ super .key});
Widget build ( BuildContext context) {
title : 'Supabase Flutter' ,
theme : ThemeData . dark (). copyWith (
primaryColor : Colors .green,
textButtonTheme : TextButtonThemeData (
style : TextButton . styleFrom (
foregroundColor : Colors .green,
elevatedButtonTheme : ElevatedButtonThemeData (
style : ElevatedButton . styleFrom (
foregroundColor : Colors .white,
backgroundColor : Colors .green,
home : supabase.auth.currentSession == null
extension ContextExtension on BuildContext {
void showSnackBar ( String message, { bool isError = false }) {
ScaffoldMessenger . of ( this ). showSnackBar (
? Theme . of ( this ).colorScheme.error
: Theme . of ( this ).snackBarTheme.backgroundColor,
Once that's done, run this in a terminal window to launch on Android or iOS:
Or for web, run the following command to launch it on localhost:3000
flutter run -d web-server --web-hostname localhost --web-port 3000
And then open the browser to localhost:3000 and you should see the completed app.
Every Supabase project is configured with Storage for managing large files like
photos and videos.
We will be storing the image as a publicly sharable image.
Make sure your avatars
bucket is set to public, and if it is not, change the publicity by clicking the dot menu that appears when you hover over the bucket name.
You should see an orange Public
badge next to your bucket name if your bucket is set to public.
Adding image uploading feature to account page#
We will use image_picker
plugin to select an image from the device.
Add the following line in your pubspec.yaml file to install image_picker
:
Using image_picker
requires some additional preparation depending on the platform.
Follow the instruction on README.md of image_picker
on how to set it up for the platform you are using.
Once you are done with all of the above, it is time to dive into coding.
Let's create an avatar for the user so that they can upload a profile photo.
We can start by creating a new component:
lib/components/ avatar.dart
import 'package:flutter/material.dart' ;
import 'package:image_picker/image_picker.dart' ;
import 'package:supabase_flutter/supabase_flutter.dart' ;
import 'package:supabase_quickstart/main.dart' ;
class Avatar extends StatefulWidget {
final void Function ( String ) onUpload;
State < Avatar > createState () => _AvatarState ();
class _AvatarState extends State < Avatar > {
Widget build ( BuildContext context) {
if (widget.imageUrl == null || widget.imageUrl ! .isEmpty)
onPressed : _isLoading ? null : _upload,
child : const Text ( 'Upload' ),
Future < void > _upload () async {
final picker = ImagePicker ();
final imageFile = await picker. pickImage (
source : ImageSource .gallery,
setState (() => _isLoading = true );
final bytes = await imageFile. readAsBytes ();
final fileExt = imageFile.path. split ( '.' ).last;
final fileName = '${ DateTime . now (). toIso8601String ()}.$ fileExt ' ;
final filePath = fileName;
await supabase.storage. from ( 'avatars' ). uploadBinary (
fileOptions : FileOptions (contentType : imageFile.mimeType),
final imageUrlResponse = await supabase.storage
. createSignedUrl (filePath, 60 * 60 * 24 * 365 * 10 );
widget. onUpload (imageUrlResponse);
} on StorageException catch (error) {
context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
setState (() => _isLoading = false );
And then we can add the widget to the Account page as well as some logic to update the avatar_url
whenever the user uploads a new avatar.
lib/pages/ account_page.dart
import 'package:flutter/material.dart' ;
import 'package:supabase_flutter/supabase_flutter.dart' ;
import 'package:supabase_quickstart/components/avatar.dart' ;
import 'package:supabase_quickstart/main.dart' ;
import 'package:supabase_quickstart/pages/login_page.dart' ;
class AccountPage extends StatefulWidget {
const AccountPage ({ super .key});
State < AccountPage > createState () => _AccountPageState ();
class _AccountPageState extends State < AccountPage > {
final _usernameController = TextEditingController ();
final _websiteController = TextEditingController ();
/// Called once a user id is received within `onAuthenticated()`
Future < void > _getProfile () async {
final userId = supabase.auth.currentSession ! .user.id;
await supabase. from ( 'profiles' ). select (). eq ( 'id' , userId). single ();
_usernameController.text = (data[ 'username' ] ?? '' ) as String ;
_websiteController.text = (data[ 'website' ] ?? '' ) as String ;
_avatarUrl = (data[ 'avatar_url' ] ?? '' ) as String ;
} on PostgrestException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
/// Called when user taps `Update` button
Future < void > _updateProfile () async {
final userName = _usernameController.text. trim ();
final website = _websiteController.text. trim ();
final user = supabase.auth.currentUser;
'updated_at' : DateTime . now (). toIso8601String (),
await supabase. from ( 'profiles' ). upsert (updates);
if (mounted) context. showSnackBar ( 'Successfully updated profile!' );
} on PostgrestException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
Future < void > _signOut () async {
await supabase.auth. signOut ();
} on AuthException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
Navigator . of (context). pushReplacement (
MaterialPageRoute (builder : (_) => const LoginPage ()),
/// Called when image has been uploaded to Supabase storage from within Avatar widget
Future < void > _onUpload ( String imageUrl) async {
final userId = supabase.auth.currentUser ! .id;
await supabase. from ( 'profiles' ). upsert ({
content : Text ( 'Updated your profile image!' ),
} on PostgrestException catch (error) {
if (mounted) context. showSnackBar (error.message, isError : true );
context. showSnackBar ( 'Unexpected error occurred' , isError : true );
_usernameController. dispose ();
_websiteController. dispose ();
Widget build ( BuildContext context) {
appBar : AppBar (title : const Text ( 'Profile' )),
padding : const EdgeInsets . symmetric (vertical : 18 , horizontal : 12 ),
const SizedBox (height : 18 ),
controller : _usernameController,
decoration : const InputDecoration (labelText : 'User Name' ),
const SizedBox (height : 18 ),
controller : _websiteController,
decoration : const InputDecoration (labelText : 'Website' ),
const SizedBox (height : 18 ),
onPressed : _loading ? null : _updateProfile,
child : Text (_loading ? 'Saving...' : 'Update' ),
const SizedBox (height : 18 ),
TextButton (onPressed : _signOut, child : const Text ( 'Sign Out' )),
Congratulations, you've built a fully functional user management app using Flutter and Supabase!