flutter_registration/lib/flutter_registration.dart

22 lines
779 B
Dart
Raw Permalink Normal View History

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"
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";