mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
24 lines
591 B
Dart
24 lines
591 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
import 'package:wger/widgets/add_exercise/add_exercise_html_editor.dart';
|
|
|
|
class Step3Description extends StatelessWidget {
|
|
final GlobalKey<FormState> formkey;
|
|
|
|
const Step3Description({required this.formkey});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Form(
|
|
key: formkey,
|
|
child: Column(
|
|
children: [
|
|
AddExerciseHtmlEditor(
|
|
helperText: AppLocalizations.of(context).description,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|