Skip to content
Snippets Groups Projects
Select Git revision
  • 29b5fe036a9d2fdc89127b71b3b444a2d47c0aab
  • 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_screen.dart 582 B
    import 'package:flutter/material.dart';
    
    import 'main_screen.dart';
    import '../widgets/app_bar.dart';
    
    class SkeletonScreen extends StatefulWidget {
      const SkeletonScreen({super.key});
    
      @override
      State<SkeletonScreen> createState() => _SkeletonScreenState();
    }
    
    class _SkeletonScreenState extends State<SkeletonScreen> {
      @override
      Widget build(BuildContext context) {
        return Scaffold(
          appBar: const StandardAppBar(),
          extendBodyBehindAppBar: true,
          body: const MainScreen(),
          backgroundColor: Theme.of(context).colorScheme.background,
        );
      }
    }