24 lines
645 B
Dart
24 lines
645 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
|
|
|
class SelectionEmptyWidget extends StatelessWidget {
|
|
const SelectionEmptyWidget({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Image.asset('assets/logo.png', width: 64, height: 64),
|
|
const SizedBox(height: 2),
|
|
Text(
|
|
AppLocalizations.of(context)!.appName,
|
|
style: const TextStyle(fontSize: 18, fontWeight: FontWeight.w900),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|