Skip to content
Snippets Groups Projects
Select Git revision
  • d90c2fa31c6fe18977dbc22c597cbb8df7e66ea3
  • master default protected
  • 82-reword-settings
  • 67-improve-app-metadata
  • 54-improve-discoveries-page
  • 7-add-lastfm-link
  • Release_0.9.2_79 protected
  • Release_0.9.1_78 protected
  • Release_0.9.0_77 protected
  • Release_0.8.4_76 protected
  • Release_0.8.3_75 protected
  • Release_0.8.2_74 protected
  • Release_0.8.1_73 protected
  • Release_0.8.0_72 protected
  • Release_0.7.0_71 protected
  • Release_0.6.0_70 protected
  • Release_0.5.0_69 protected
  • Release_0.4.2_68 protected
  • Release_0.4.1_67 protected
  • Release_0.4.0_66 protected
  • Release_0.3.1_65 protected
  • Release_0.3.0_64 protected
  • Release_0.2.2_63 protected
  • Release_0.2.1_62 protected
  • Release_0.2.0_61 protected
  • Release_0.1.2_60 protected
26 results

data_top_artists_state.dart

Blame
  • diaolog_not_found.dart 998 B
    import 'package:ahorcado/utils/constantes.dart';
    import 'package:flutter/material.dart';
    
    class DialogoNotFound extends StatelessWidget {
      const DialogoNotFound({Key key}) : super(key: key);
    
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          backgroundColor: Color(pizarra),
          body: WillPopScope(
            onWillPop: () async => false,
            child: AlertDialog(
              title: Text('Fallo de conexión'),
              content: Text('No ha sido posible seleccionar ninguna palabra. '
                  'Es posible que la conexión a internet haya fallado.\n'
                  '¿Cambiar al modo Temas sin internet?'),
              actions: [
                FlatButton(
                  child: const Text('VOLVER'),
                  onPressed: () => Navigator.pop(context, false),
                ),
                FlatButton(
                  child: const Text('ACEPTAR'),
                  onPressed: () => Navigator.pop(context, true),
                ),
              ],
            ),
          ),
        );
      }
    }