Vishnu
heaven-v.bsky.social
Vishnu
@heaven-v.bsky.social
Android| Flutter Developer
Need to return an empty widget?

Don't use Container(). It's creates a colored box, checks for constraints, padding, margins, and decoration. It’s "heavy". Use SizedBox.shrink(). It's free.

Small changes add up to better performance. 📱✨

#FlutterDev #Dart #MobileDev
December 8, 2025 at 6:55 AM
Flutter Performance Tip ⚡️

❌ The Laggy Way: ListView inside a Column with shrinkWrap: true. Result: It renders the whole list instantly. 💥

✅ The Pro Way:Use CustomScrollView with Slivers. Result: True lazy loading. Only builds what is on the screen.
December 4, 2025 at 9:50 AM
Did you know Flutter might redraw your entire page just to spin a loading icon? 🎨

The Fix: RepaintBoundary
It isolates widgets into separate layers.

❌ Without: Full screen repaints
✅ With: Only loader repaints

#Flutter #Dart
November 28, 2025 at 10:58 AM
Flutter tip time ⚡️

👀 The Scenario: You are using an AnimatedBuilder (or TweenAnimationBuilder) to rotate or fade a complex widget (like a detailed Profile Card).

✅ The Hack: Use the child parameter to build the complex widget once, and only animate the transformation.

👇
November 27, 2025 at 7:31 AM
Flutter Performance Tip 🚀

Building a ListView where every item has the same height?

Don't let Flutter guess the size! Use itemExtent.

It tells the scroll view exactly how big items are, skipping expensive layout calculations during scrolling. 📉

Smoother scrolling, less jank.

#Flutter #Dart
November 25, 2025 at 7:10 AM
One line of code to instantly improve your Flutter app's scrolling performance. ⚡️

If your source image is 3000px but your widget is only 300px, use cacheWidth.

Why?

It reduces decode time and memory usage.
Your users (and their batteries) will thank you. 🔋

#Flutter #AppDev
November 24, 2025 at 6:59 PM
I found this random VS Code extension and it’s actually gold. 🏆

Instead of reading raw text, it visualizes your JSON as a flowchart. Makes debugging complex data so much faster.

Highly recommend grabbing it: 👉 marketplace.visualstudio.com/items?itemNa...

jsoncrack.com/editor
November 20, 2025 at 5:34 AM
Ever wonder why the Flutter linter begs you to use const? Here is the proof. 👇

I triggered setState 50 times.
🔴 Non-const Text: Rebuilt 50 times.
🟢 Const Text: Rebuilt only 2 times.

This tiny keyword saves app from unnecessary work.
Stop ignoring! ⚡️

#Flutter #Dart
November 18, 2025 at 5:47 PM
🚀 Speed Up Your Flutter Apps! 🚀

Want to load heavy features only when needed?

Use Dart’s deferred keyword to lazy-load parts of your app!

🔹 Faster startup!

Try it for big features, maps, or anything not needed right away.

#Flutter #Dart #MobileDev #TipsAndTricks

Here’s how 👇
November 17, 2025 at 6:20 AM
🚀 Built payment workflow using Kotlin's structured concurrency.

Three checks in parallel: validation, fraud, inventory. ✅

All succeed → charge on Dispatchers.IO
Any fail → cancel safely 🛡️

Clean, fast
Kotlin coroutines FTW ⚡️

#Kotlin #Coroutines #AndroidDev
November 14, 2025 at 5:30 AM
🚀 CMake + Flutter = Power! 🛠️

CMake compiles C/C++ libraries, bridging Flutter with native code.

💡 What:
• Compiles to .so/.dll
• Manages dependencies
• Integrates

🌍 Support: Android, Windows, Linux, macOS

🔧 Flow: C++ → CMakeLists → FFI

💻 Tips:
• Check
• Debug
a black background with white numbers and red arrows pointing to the numbers
ALT: a black background with white numbers and red arrows pointing to the numbers
media.tenor.com
November 4, 2025 at 5:49 AM
🚀 Kotlin Tips ✨

**Null Safety**
• Use sealed over nullable
• Prevents crashes & when

**Structured Concurrency**
• viewModelScope > GlobalScope
• Prevents memory leaks

**Extension Functions**
• Add functionality without inherit
• Idiomatic code

#Kotlin #AndroidDev #NullSafety #Coroutines #DevTips
November 3, 2025 at 6:33 AM
Most used Java functions
May 19, 2025 at 4:52 AM
Turn any GitHub repository into an interactive diagram for visualization in seconds.

#git
May 17, 2025 at 2:10 AM
Moon Animation App 🌙✨

Crafted with Flutter, showcases elegant and mesmerising moon animations — a simple yet beautiful demonstration of UI capabilities.

code: shorturl.at/NZtXE

#Flutter #FlutterDev #UIUX #Animation #DartLang #FlutterAnimations #MadeWithFlutter
May 14, 2025 at 5:31 AM
🚀 Nike Zoomer - Animated UI in #JetpackCompose 🎨

Sleek, fully animated UI for Nike Shoes. 🖤👟

💡 Inspired by this Flutter design.
flutterwidgethub.com/components/b...

🔗 Source Code: github.com/Vishnuv2311/...
Explore and contribute! 🚀

What do you think? Share your feedback! 🙌
March 20, 2025 at 4:29 AM
✨ Jetpack Compose Burger Animation App 🍔🎬

🔗 UI Reference:
shorturl.at/lW04n
by Musab Alfawal

💾 Source Code:
github.com/Vishnuv2311/...

If you find this project helpful, drop a ⭐ on GitHub! Your support keeps us going! 💙🔥 #JetpackCompose #AndroidDev
March 20, 2025 at 4:27 AM
🚀 Face Verification Using DeepFace & Firebase Functions 🔥
check it out! 👇
medium.com/@vishnuv2311...

✅ Accurate face-matching
✅ Scalable & serverless

#AI #FaceRecognition #DeepLearning #Firebase #DeepFace #Tech
March 20, 2025 at 4:26 AM
☕ Just Brewed: A Coffee App in Jetpack Compose! 🚀

Inspired by the original Flutter implementation.

🌟 Check out the source code here: shorturl.at/IFX6u

#JetpackCompose #AndroidDevelopment #CoffeeApp
March 20, 2025 at 4:26 AM
🚀 Ultimate Social Media Video Downloader! 🎉

✅ Fast HD, UHD, 4K downloads
✅ Blazing speed 🚀
✅ Auto-detect videos 🎥
✅ Background & multi-download

Made with ❤️ for convenience.

👉 Download now: play.google.com/store/apps/d...

#VideoDownloader #SocialMedia
March 20, 2025 at 4:25 AM
📚 Apple Books FAB Animation in #JetpackCompose 🚀

Inspired by the original Flutter implementation: shorturl.at/LdDz6

🔗 Source Code: shorturl.at/F7ACl

💬 Feedback and contributions are welcome! 🙌
March 20, 2025 at 4:24 AM
✨ Animated Expandable Tab Bar in #JetpackCompose

Inspired by Flutter’s creativity, now reimagined for Compose! 🌟

💡 Inspiration: shorturl.at/9ko8m
🔗 Source Code: shorturl.at/xCSUB

Explore, experiment, and share your thoughts! 🚀😊
March 20, 2025 at 4:22 AM
🎨 Stylish Toolbar in #JetpackCompose 🎉

💡 Inspired by: shorturl.at/uvJbm

🔗 Source Code: shorturl.at/EVI7a

Explore, share your thoughts, and let’s build amazing apps! 🚀😊
March 20, 2025 at 4:21 AM
🍓 Fruity Lips Carousel - Animated Bottle Carousel #JetpackCompose 🍊

💡 Inspiration: shorturl.at/COE8n
This project takes inspiration from the original Flutter implementation and brings it to life with Jetpack Compose!

🔗 Source Code: shorturl.at/1v1t8

🍉🍇
March 20, 2025 at 4:20 AM
I just published Retrofit SSL Certificate Pinning Without a Certificate File

#Android #Retrofit #ssl

medium.com/@vishnuv2311...
Retrofit SSL Certificate Pinning Without a Certificate File
Now SSL Pinning is required in every project, SSL certificate pinning plays a crucial role in protecting against Man-in-the-Middle (MITM)…
medium.com
March 20, 2025 at 4:18 AM