Solian/lib/widgets/sidebar/sidebar_placeholder.dart

16 lines
355 B
Dart
Raw Normal View History

2024-06-02 14:45:54 +00:00
import 'package:flutter/material.dart';
class SidebarPlaceholder extends StatelessWidget {
const SidebarPlaceholder({super.key});
@override
Widget build(BuildContext context) {
2024-06-27 06:56:09 +00:00
return Material(
color: Theme.of(context).colorScheme.surface,
child: const Center(
child: Icon(Icons.menu_open, size: 50),
),
2024-06-02 14:45:54 +00:00
);
}
}