mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-24 07:46:06 +00:00
12 lines
No EOL
258 B
Dart
12 lines
No EOL
258 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ClientPlaceholder extends StatelessWidget {
|
|
const ClientPlaceholder({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text("Select a client"),
|
|
);
|
|
}
|
|
} |