You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
362B

  1. import 'package:farm_tpf/utils/const_string.dart';
  2. import 'package:flutter/material.dart';
  3. class WidgetErrorTextField extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return Text(
  7. label_validate_input_empty,
  8. style: TextStyle(
  9. fontSize: 11, color: Colors.red[400], fontWeight: FontWeight.w100),
  10. );
  11. }
  12. }