Skip to content

Instantly share code, notes, and snippets.

View neeraj-j's full-sized avatar

Neeraj Jain neeraj-j

View GitHub Profile
@boeledi
boeledi / OverlayableContainerOnLongPress_sample.dart
Last active May 1, 2024 04:47
How to display an overlay on top of a particular item, present in a Scroll Area, on longPress?
import 'package:flutter/material.dart';
import 'dart:math';
void main() {
///
/// Launch the application
///
runApp(const Application());
}