Skip to content

Commit

Permalink
Fix flutter web import (#10289)
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Aug 11, 2023
1 parent d7296c7 commit c0869fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion articles/quickstart/spa/flutter/01-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion articles/quickstart/spa/flutter/files/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ language: dart
<!-- markdownlint-disable MD041 -->

```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';
Expand Down

0 comments on commit c0869fa

Please sign in to comment.