mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
14 lines
367 B
Dart
14 lines
367 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:auto_route/auto_route.dart';
|
|
|
|
//Empty screen that "overlays" the settings selection on single layout
|
|
@RoutePage()
|
|
class SettingsSelectionScreen extends StatelessWidget {
|
|
const SettingsSelectionScreen({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const SizedBox.expand();
|
|
}
|
|
}
|