Skip to content

Instantly share code, notes, and snippets.

View om-chauhan's full-sized avatar
🏠
Working from home

Omprakash Chauhan om-chauhan

🏠
Working from home
View GitHub Profile
@om-chauhan
om-chauhan / overlay_with_hole.dart
Created September 14, 2023 16:14 — forked from flutter-clutter/overlay_with_hole.dart
Flutter overlay with a hole
import 'package:flutter/material.dart';
class OverlayWithHole extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Flutterclutter: Holes")),
body: _getExperimentOne()
);
}