Skip to content

Instantly share code, notes, and snippets.

View Alexi-Zemcov's full-sized avatar

Alexey Zemtsov Alexi-Zemcov

View GitHub Profile
@Alexi-Zemcov
Alexi-Zemcov / overlay_with_hole.dart
Last active March 3, 2023 07:53 — forked from flutter-clutter/overlay_with_hole.dart
Flutter overlay with a hole
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
MyApp({Key? key}) : super(key: key);
@override