renamed steps
This commit is contained in:
@@ -405,8 +405,9 @@ class _AddCamMainState extends State<AddCamMain> {
|
||||
Widget build(BuildContext context) {
|
||||
// List with the steps. The steps itself will be "shown" later
|
||||
List<Step> getSteps() => [
|
||||
// First step
|
||||
Step(
|
||||
title: Text(AppLocalizations.of(context)!.firstStep),
|
||||
title: Text(AppLocalizations.of(context)!.firststep),
|
||||
content: Column(
|
||||
children: [
|
||||
Align(
|
||||
@@ -509,9 +510,9 @@ class _AddCamMainState extends State<AddCamMain> {
|
||||
],
|
||||
)),
|
||||
|
||||
// Second step (location)
|
||||
// Second step
|
||||
Step(
|
||||
title: Text(AppLocalizations.of(context)!.locations),
|
||||
title: Text(AppLocalizations.of(context)!.secondstep),
|
||||
content: Column(
|
||||
children: [
|
||||
Align(
|
||||
@@ -595,9 +596,9 @@ class _AddCamMainState extends State<AddCamMain> {
|
||||
),
|
||||
],
|
||||
)),
|
||||
// Date Step
|
||||
// Third step
|
||||
Step(
|
||||
title: Text(AppLocalizations.of(context)!.date),
|
||||
title: Text(AppLocalizations.of(context)!.thirdstep),
|
||||
content: Column(
|
||||
children: [
|
||||
Datum(
|
||||
@@ -656,8 +657,9 @@ class _AddCamMainState extends State<AddCamMain> {
|
||||
),
|
||||
],
|
||||
)),
|
||||
// Fourth step
|
||||
Step(
|
||||
title: Text(AppLocalizations.of(context)!.kontakt),
|
||||
title: Text(AppLocalizations.of(context)!.fourthstep),
|
||||
content: Column(
|
||||
children: [
|
||||
const SizedBox(
|
||||
|
||||
Reference in New Issue
Block a user