mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-18 21:23:43 +02:00
22 lines
779 B
Dart
22 lines
779 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
/// Flutter registration component that provides a registration
|
|
/// screen with multiple registration steps.
|
|
library flutter_registration;
|
|
|
|
export "package:flutter_input_library/flutter_input_library.dart"
|
|
show BoolWidgetType;
|
|
|
|
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";
|