Skip to content
Snippets Groups Projects
Select Git revision
  • 0958c9ec0eb6e5363e6ee15cb020d8fbf096541a
  • master default protected
  • 21-add-onlongpress-with-popup-on-parameters
  • 23-center-vertically-buttons
  • 30-highlight-bin-when-selecting-disabled-item
  • 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
  • 0.3.0 protected
25 results

.editorconfig

Blame
  • button_resume_saved_game.dart 584 B
    import 'package:flutter/material.dart';
    import 'package:flutter_custom_toolbox/flutter_toolbox.dart';
    
    import 'package:reversi/cubit/game_cubit.dart';
    
    class ResumeSavedGameButton extends StatelessWidget {
      const ResumeSavedGameButton({super.key});
    
      @override
      Widget build(BuildContext context) {
        return StyledButton(
          color: Colors.blue,
          onPressed: () {
            BlocProvider.of<GameCubit>(context).resumeSavedGame();
          },
          child: const Image(
            image: AssetImage('assets/ui/button_resume_game.png'),
            fit: BoxFit.fill,
          ),
        );
      }
    }