Skip to content

Instantly share code, notes, and snippets.

View lambiengcode's full-sized avatar
🦀
Now in RTC

Kai lambiengcode

🦀
Now in RTC
View GitHub Profile
@guptahitesh121
guptahitesh121 / two_finger_swipe.dart
Last active July 13, 2025 14:09
Flutter Sample code to detect 2 finger swipe vertically using `RawGestureDetector` and `MultiDragGestureRecognizer`.
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Swipe Demo',