2022-11-01 09:19:20 +01:00
|
|
|
// SPDX-FileCopyrightText: 2022 Iconica
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2024-08-08 10:57:20 +02: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
|
|
|
|
2024-08-08 10:57:20 +02:00
|
|
|
export "package:flutter_input_library/flutter_input_library.dart"
|
2024-02-05 13:00:21 +01:00
|
|
|
show BoolWidgetType;
|
2024-08-08 10:57:20 +02:00
|
|
|
|
|
|
|
export "src/config/registration_options.dart";
|
|
|
|
export "src/config/registration_translations.dart";
|
|
|
|
export "src/model/auth_bool_field.dart";
|
|
|
|
export "src/model/auth_drop_down.dart";
|
|
|
|
export "src/model/auth_exception.dart";
|
|
|
|
export "src/model/auth_field.dart";
|
|
|
|
export "src/model/auth_pass_field.dart";
|
|
|
|
export "src/model/auth_step.dart";
|
|
|
|
export "src/model/auth_text_field.dart";
|
|
|
|
export "src/registration_screen.dart";
|
|
|
|
export "src/service/registration_repository.dart";
|