mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-23 07:19:11 +00:00
12 lines
269 B
Dart
12 lines
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"),
|
||
|
);
|
||
|
}
|
||
|
}
|