16 lines
408 B
Dart
16 lines
408 B
Dart
// Copyright 2019-2023 Hugo Pointcheval
|
|
//
|
|
// Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://opensource.org/licenses/MIT.
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class Blank extends StatelessWidget {
|
|
const Blank({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) =>
|
|
const Center(child: Text('Nothing to show'));
|
|
}
|