Skip to content

Instantly share code, notes, and snippets.

@red-star25
Created September 13, 2021 07:05
Show Gist options
  • Save red-star25/7351745653b8d15d220360fec4337c84 to your computer and use it in GitHub Desktop.
Save red-star25/7351745653b8d15d220360fec4337c84 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(MaterialApp(home: MyApp()));
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: CustomScrollView(
slivers: <Widget>[
SliverSafeArea(
sliver: SliverAppBar(
title: Text("SliverSafeArea"),
),
),
],
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment