shlogg · Early preview
Shan @shan-shaji

Sharing insights on programming, AI, cybersecurity, Flutter, databases, and web development. Documenting stuff as I learn new things.

Implementing Equatable In Flutter For Efficient Object Comparison

Flutter's equatable package simplifies object comparison by checking if two objects have the same properties & values. Use the == operator or isEquals method for efficient comparisons!

Flutter Context In Depth: Accessing Environment And Services

Flutter's context provides info about surrounding environment & services needed by widgets, passed down from parent to child in the widget tree, allowing widgets to adapt to their environment.