Skip to content
Snippets Groups Projects
Select Git revision
  • 5c5a46fafa31ffd31a6a63ad66eb2a0ec1e7846e
  • 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

pubspec.yaml

Blame
  • skeleton.dart 486 B
    import 'package:flutter/material.dart';
    
    import 'package:jeweled/ui/screens/game.dart';
    import 'package:jeweled/ui/widgets/global_app_bar.dart';
    
    class SkeletonScreen extends StatelessWidget {
      const SkeletonScreen({super.key});
    
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: const GlobalAppBar(),
          extendBodyBehindAppBar: false,
          body: const ScreenGame(),
          backgroundColor: Theme.of(context).colorScheme.background,
        );
      }
    }