Skip to content

Commit

Permalink
Fix Flutter web imports in QS (#10304)
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket committed Sep 19, 2023
1 parent bfa395a commit 7883c18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions articles/quickstart/spa/flutter/01-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +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 {
Expand Down
1 change: 1 addition & 0 deletions articles/quickstart/spa/flutter/files/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +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 7883c18

Please sign in to comment.