diff --git a/articles/quickstart/spa/flutter/01-login.md b/articles/quickstart/spa/flutter/01-login.md index 7350a4a89c..4ba170a781 100644 --- a/articles/quickstart/spa/flutter/01-login.md +++ b/articles/quickstart/spa/flutter/01-login.md @@ -43,7 +43,7 @@ You should also be familiar with the [Flutter command line tool](https://docs.fl Integrate Auth0 Universal Login in your Flutter app by importing the SDK and instantiating the `Auth0` class using your Auth0 domain and Client ID values. See this example, which instantiates the class inside a widget state object: ```dart -import 'package:auth0_flutter/auth0_flutter.dart'; +import 'package:auth0_flutter/auth0_flutter_web.dart'; class MainView extends StatefulWidget { const MainView({Key? key}) : super(key: key); diff --git a/articles/quickstart/spa/flutter/files/main.md b/articles/quickstart/spa/flutter/files/main.md index 6e6f0077a9..6322c56e21 100644 --- a/articles/quickstart/spa/flutter/files/main.md +++ b/articles/quickstart/spa/flutter/files/main.md @@ -5,7 +5,7 @@ language: dart ```dart -import 'package:auth0_flutter/auth0_flutter.dart'; +import 'package:auth0_flutter/auth0_flutter_web.dart'; import 'package:flutter/material.dart'; import 'profile_view.dart';