Skip to content
Snippets Groups Projects
Select Git revision
  • 4103b4798f583ac9982011d470fce3d85d42366d
  • master default protected
  • 21-add-onlongpress-with-popup-on-parameters
  • 23-center-vertically-buttons
  • 30-highlight-bin-when-selecting-disabled-item
  • 1.0.8 protected
  • 1.0.7 protected
  • 1.0.6 protected
  • 1.0.5 protected
  • 1.0.4 protected
  • 1.0.3 protected
  • 1.0.2 protected
  • 1.0.0 protected
  • 0.9.1 protected
  • 0.9.0 protected
  • 0.8.4 protected
  • 0.8.3 protected
  • 0.8.2 protected
  • 0.8.1 protected
  • 0.8.0 protected
  • 0.7.0 protected
  • 0.6.1 protected
  • 0.6.0 protected
  • 0.5.0 protected
  • 0.4.0 protected
25 results

settings_activity.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),
        );
      }
    }