Files
TubeCards/lib/modules/developer_options/developer_options_page.dart
friebetill 80f218097d Initial commit
Add Space version 2.0.1
2022-03-28 14:56:00 +02:00

15 lines
491 B
Dart

import 'package:flutter/material.dart';
import 'component/developer_options/developer_options_component.dart';
/// The screen shows all developer options.
class DeveloperOptionsPage extends StatelessWidget {
const DeveloperOptionsPage({Key? key}) : super(key: key);
/// The name of the route to the [DeveloperOptionsPage] screen.
static const String routeName = '/profile/developer-options';
@override
Widget build(BuildContext context) => const DeveloperOptionsComponent();
}