mirror of
https://github.com/Iconica-Development/flutter_form_wizard.git
synced 2025-05-19 19:03:47 +02:00
17 lines
475 B
Dart
17 lines
475 B
Dart
// SPDX-FileCopyrightText: 2022 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:form_example/example_pages/thanks_page.dart';
|
|
import 'package:form_example/form_example.dart';
|
|
import 'package:form_example/main.dart';
|
|
|
|
Map<String, WidgetBuilder> getRoutes() {
|
|
return {
|
|
'/': (context) => const FormsExample(),
|
|
'/form': (context) => const FormExample(),
|
|
'/thanks': (context) => const ThanksPage(),
|
|
};
|
|
}
|