Get Your Location On: A Step-by-Step Guide to Creating a Flutter App with Riverpod and Geolocator with Clean Architecture

Intro: While I was working on our upcoming app GotInfo. I needed to handle location permissions for my user since we use a google map to show the nearby posts pertinent to the user. While I could just use the default permission_handler and be done wi... https://harishkunchala.com/get-your-location-on-a-step-by-step-guide-to-creating-a-flutter-app-with-riverpod-and-geolocator-with-clean-architecture

Établi 14d | 28 avr. 2024 à 04:40:03


Connectez-vous pour ajouter un commentaire

Autres messages de ce groupe

Flutter Riverpod Tutorial Part 1: Provider and StateProvider, StateNotifierProvider, ChangeNotifierProvider

Setup Riverpod Before we start using Riverpod. Let's set it up in our Flutter Project Add the dependency: flutter pub add flutter_riverpod

Wrap our application with ProviderScope: This is necessary f

11 mai 2024 à 18:40:07 | Hashnode flutter
The Ultimate Guide to GoRouter: Navigation in Flutter Apps Part -3 (Custom Transitions)

Part -1: https://tinyurl.com/k3f64hwv Part -2: https://tinyurl.com/3azk6jjj Starting with custom transitions in GoRouter is a fantastic way to enhance the user experience of our Flutter application by

10 mai 2024 à 17:40:03 | Hashnode flutter
How to Setup & Launch a Flutter App Cloned from GitHub

Flutter is a popular framework by Google for building cross-platform mobile apps with a single codebase. When you clone an existing Flutter app from GitHub, several steps must be followed to successfu

10 mai 2024 à 08:30:12 | Hashnode flutter
The Ultimate Guide to GoRouter: Navigation in Flutter Apps Part -2 (Nested Routers, Redirect, Guard, Error Handling)

You can find the Part 1 here: https://tinyurl.com/k3f64hwv Dashboard Page - Nested Routes Example 1: Tabbed Content with Widgets Nested routes are useful for organizing complex user interfaces with mu

9 mai 2024 à 23:20:08 | Hashnode flutter
The Ultimate Guide to GoRouter: Navigation in Flutter Apps Part -1 (Go Router Setup, Declarative Routing, Type Safety , Path and Query Params)

As a Flutter developer, you're likely no stranger to the importance of navigation in your app. Whether you're building a simple to-do list or a complex e-commerce platform, navigation is a crucial asp

9 mai 2024 à 18:50:03 | Hashnode flutter
Introduction to Flutter:  A Primer on Cross-Platform Development

Flutter is an open-source UI software development kit created by Google. It is used to develop applications for mobile, web, and desktop platforms from a single codebase. Applications of Flutter: Flut

9 mai 2024 à 09:40:05 | Hashnode flutter
Data Type and Variable in Dart

In flutter we need to store data . for eg we need to store data in the box that box is variable. What is a variable? It is a box that contain data. What is a Data Type Dart language, there are the typ

9 mai 2024 à 07:30:04 | Hashnode flutter