Skip to content
Snippets Groups Projects
Select Git revision
  • efbddb9b9d57db7e37d99429da2c1ab4cca21710
  • master default protected
  • 9-improve-app-metadata
  • 2-add-api-call-to-get-and-display-user-data
  • Release_0.8.1_23 protected
  • Release_0.8.0_22 protected
  • Release_0.7.2_21 protected
  • Release_0.7.1_20 protected
  • Release_0.7.0_19 protected
  • Release_0.6.0_18 protected
  • Release_0.5.0_17 protected
  • Release_0.4.0_16 protected
  • Release_0.3.2_15 protected
  • Release_0.3.1_14 protected
  • Release_0.3.0_13 protected
  • Release_0.2.1_12 protected
  • Release_0.2.0_11 protected
  • Release_0.1.2_10 protected
  • Release_0.1.1_9 protected
  • Release_0.1.0_8 protected
  • Release_0.0.7_7 protected
  • Release_0.0.6_6 protected
  • Release_0.0.5_5 protected
  • Release_0.0.4_4 protected
24 results

error.dart

Blame
  • error.dart 424 B
    import 'package:easy_localization/easy_localization.dart';
    import 'package:flutter/material.dart';
    
    class ShowErrorWidget extends StatelessWidget {
      const ShowErrorWidget({super.key, required this.message});
    
      final String message;
    
      @override
      Widget build(BuildContext context) {
        return Text(
          '⚠️ ' + tr(message),
          textAlign: TextAlign.start,
          style: TextStyle(color: Colors.red),
        );
      }
    }