You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
doctor_app_flutter/lib/screens/pharmacy_intervention/widgets/NoInveterventionFound.dart

20 lines
498 B
Dart

import 'package:doctor_app_flutter/utils/translations_delegate_base_utils.dart';
import 'package:flutter/material.dart';
class NoInterventionFound extends StatelessWidget{
@override
Widget build(BuildContext context) {
return Center(
child: Text(
TranslationBase.of(context).noInterventionFound,
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.black,
fontWeight: FontWeight.w600,
fontSize: 13,
),
),
);
}
}