Line data Source code
1 : import 'dart:ui';
2 :
3 : import 'package:flutter/material.dart';
4 : import 'package:localization/localization.dart';
5 :
6 : class NotAvailableYetWidget extends StatelessWidget {
7 12 : const NotAvailableYetWidget({super.key});
8 :
9 0 : @override
10 : Widget build(BuildContext context) {
11 0 : return Container(
12 0 : decoration: BoxDecoration(
13 0 : color: Colors.white.withOpacity(0.2),
14 : ),
15 0 : child: BackdropFilter(
16 0 : filter: ImageFilter.blur(sigmaX: 10, sigmaY: 10),
17 0 : child: Center(
18 0 : child: Text(
19 0 : 'pages.unavailable'.i18n(),
20 : textAlign: TextAlign.center,
21 : style: const TextStyle(color: Colors.black, fontSize: 24),
22 : ),
23 : ),
24 : ),
25 : );
26 : }
27 : }
|