-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclerk_flutter.dart
23 lines (22 loc) · 1.18 KB
/
clerk_flutter.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/// Package that will allow you to authenticate and use Clerk from Flutter code.
library;
export 'src/clerk_auth_state.dart';
export 'src/clerk_user_action.dart';
export 'src/generated/clerk_sdk_localizations.dart';
export 'src/utils/clerk_auth_config.dart';
export 'src/widgets/authentication/clerk_authentication.dart';
export 'src/widgets/authentication/clerk_sign_in_panel.dart';
export 'src/widgets/authentication/clerk_sign_out_panel.dart';
export 'src/widgets/authentication/clerk_sign_up_panel.dart';
export 'src/widgets/authentication/clerk_sso_panel.dart';
export 'src/widgets/control/clerk_auth.dart';
export 'src/widgets/control/clerk_auth_builder.dart';
export 'src/widgets/control/clerk_error_listener.dart';
export 'src/widgets/control/clerk_signed_in.dart';
export 'src/widgets/control/clerk_signed_out.dart';
export 'src/widgets/organization/clerk_organization_list.dart';
export 'src/widgets/organization/clerk_organization_profile_widget.dart';
export 'src/widgets/organization/clerk_organization_switcher_widget.dart';
export 'src/widgets/organization/create_organization_panel.dart';
export 'src/widgets/user/clerk_user_button.dart';
export 'src/widgets/user/clerk_user_profile.dart';