2023-06-03 00:40:40 +02:00
|
|
|
import 'package:ernaehrung/android/components/form/form_builder.dart';
|
2023-05-31 23:22:38 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2023-05-29 12:08:46 +02:00
|
|
|
|
|
|
|
class OnboardingPage extends StatefulWidget {
|
|
|
|
const OnboardingPage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<OnboardingPage> createState() => _OnboardingPageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _OnboardingPageState extends State<OnboardingPage> {
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-05-31 23:22:38 +02:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text("Welcome"),
|
|
|
|
backgroundColor: Colors.grey.shade100,
|
|
|
|
),
|
2023-06-03 00:40:40 +02:00
|
|
|
body: const FormBuilderComponent(lockTextFields: false,)
|
2023-05-31 23:22:38 +02:00
|
|
|
);
|
2023-05-29 12:08:46 +02:00
|
|
|
}
|
|
|
|
}
|