mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
21 lines
641 B
Dart
21 lines
641 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:wger/core/wide_screen_wrapper.dart';
|
|
import 'package:wger/l10n/generated/app_localizations.dart';
|
|
import 'package:wger/widgets/routines/plate_calculator.dart';
|
|
|
|
class ConfigurePlatesScreen extends StatelessWidget {
|
|
static const routeName = '/ConfigureAvailablePlates';
|
|
|
|
const ConfigurePlatesScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final i18n = AppLocalizations.of(context);
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(title: Text(i18n.selectAvailablePlates)),
|
|
body: const WidescreenWrapper(child: ConfigureAvailablePlates()),
|
|
);
|
|
}
|
|
}
|