flutter_registration/lib/flutter_registration.dart

21 lines
821 B
Dart
Raw Normal View History

2022-11-01 09:19:20 +01:00
// SPDX-FileCopyrightText: 2022 Iconica
//
// SPDX-License-Identifier: BSD-3-Clause
2024-02-14 11:56:36 +01:00
/// Flutter registration component that provides a registration screen with multiple registration steps.
2022-09-20 15:52:33 +02:00
library flutter_registration;
2022-09-20 15:51:22 +02:00
export 'src/config/registration_options.dart';
export 'src/config/registration_translations.dart';
2022-09-20 15:51:22 +02:00
export 'src/model/auth_exception.dart';
2022-09-22 09:47:31 +02:00
export 'src/model/auth_field.dart';
export 'src/model/auth_step.dart';
2022-09-22 10:09:45 +02:00
export 'src/model/auth_text_field.dart';
export 'src/model/auth_bool_field.dart';
2024-02-06 16:28:51 +01:00
export 'src/model/auth_drop_down.dart';
2024-02-08 15:33:41 +01:00
export 'src/model/auth_pass_field.dart';
2022-09-20 15:51:22 +02:00
export 'src/registration_screen.dart';
export 'src/service/registration_repository.dart';
export 'package:flutter_input_library/flutter_input_library.dart'
show BoolWidgetType;
2024-03-08 14:55:34 +01:00
export 'src/config/registration_spacers.dart';