Flutter: AbsorbPointer vs IgnorePointer

Flutter: AbsorbPointer vs IgnorePointer – What’s the Difference?

In Flutter, touch events — like taps, drags, and swipes — are handled using what’s called pointer events. Sometimes, you may want certain widgets to stop responding to these touches. This could be to disable a button, block user interaction during a loading state, or create overlays that ignore input. Flutter provides two powerful widgets

Flutter: AbsorbPointer vs IgnorePointer – What’s the Difference? Read More »

Flutter: AbsorbPointer

Flutter: AbsorbPointer – Absorb Touch Events

Have you ever needed to temporarily stop interacting with a part of your app, like freezing a button while something loads? That’s where Flutter’s AbsorbPointer comes in. It allows you to stop the app from responding to touches in a specific area, like placing an invisible shield over that part of the screen. In this

Flutter: AbsorbPointer – Absorb Touch Events Read More »

Dart Runes

Dart: Runes

Have you ever wondered how a computer knows what letters, numbers, and even emojis mean? When you type A, how does the computer understand that it’s an “A” and not some random symbol? The answer is Unicode. Unicode is like a giant language book for computers. It gives every letter, number, and symbol a unique

Dart: Runes Read More »

Scroll to Top