baldeau 003e982ff8
Some checks failed
xiao_pet_tracker / semantic-pull-request (push) Failing after 2s
xiao_pet_tracker / build (push) Failing after 2s
xiao_pet_tracker / spell-check (push) Failing after 1s
add some ui improvements
2024-11-14 10:36:22 +01:00

11 lines
236 B
Dart

import 'package:flutter/material.dart';
class FailureView extends StatelessWidget {
const FailureView({super.key});
@override
Widget build(BuildContext context) {
return const Text('Oops. Something bad happened! :(');
}
}