Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Flutter Web import path #10289

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading