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