SilverPadding Widget

Project Preview

  • Interested in seeing the live demo? Click here to explore.
  • Want to view the source code? Visit the project on GitHub.

Code Snippet

import 'package:flutter/material.dart';

class SilverPaddingWidget extends StatelessWidget {
  const SilverPaddingWidget({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text("SilverPadding Widget"),
      ),
      body: CustomScrollView(
        slivers: [
          SliverPadding(
            padding: const EdgeInsets.all(50.0),
            sliver: SliverList(
              delegate: SliverChildListDelegate(
                [
                  Image.network('https://tinyurl.com/95ncjeuu'),
                ],
              ),
            ),
          )
        ],
      ),
    );
  }
}