mirror of
https://github.com/friebetill/TubeCards.git
synced 2025-08-15 10:31:53 +08:00
15 lines
491 B
Dart
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();
|
|
}
|