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

Erstellt 24d | 28.04.2024, 04:40:03


Melden Sie sich an, um einen Kommentar hinzuzufügen

Andere Beiträge in dieser Gruppe

Mastering Dart, Flutter, and Serverpod: A Comprehensive Guide to Building Full-Stack Applications

Learning Dart, Flutter, and Serverpod can be a fun and rewarding journey. Here's a daily learning plan you can follow, organized for a duration of 1 hour per day for 72 days. Weeks 1-2: Dart Introduct

22.05.2024, 14:50:04 | Hashnode flutter
Custom Calendar in Flutter Application

Most applications need to work with dates. We can use the date picker from Flutter or custom packages from other developers. These options might have design limits, and we have to follow their design.

22.05.2024, 10:20:11 | Hashnode flutter
From CRUD to Search: Upgrading Your SQLite Items App with Bloc

Hello everyone, In this follow-up to our blog about SQLite CRUD operations, we'll be adding search functionality to our items app. There's no need to update the pubspec.yaml file, as all necessary dep

22.05.2024, 05:50:03 | Hashnode flutter
How to Secure Your Android Application: 5 Top Tips to Protect Your APK as Software Developer

Introduction As a mobile developer, ensuring the security of your Android application is crucial to protect user data and maintain the integrity of your app. In this article, we'll explore five essent

22.05.2024, 03:30:05 | Hashnode flutter
Go Router + Riverpod Tutorial Series 3: Nested Routes with Authentication

First let's create the required screens. Settings Page: Settings page has two buttons: (Go to Account Settings, Logout). class SettingsPage extends ConsumerWidget { const SettingsPage({super.key});

22.05.2024, 01:20:05 | Hashnode flutter
Go Router + Riverpod Tutorial Series 5: Advanced Redirection with State Restoration

First let's update our AuthNotifier to support state restoration Source code: redirection_with_state_restoration Prerequisites: First we are going to use flutter_secure_storage to store the state of t

22.05.2024, 01:20:04 | Hashnode flutter
Go Router + Riverpod Tutorial 2: Conditional Redirection with Guards

In our previous article we have covered basic redirect. Now let's take a look at Conditional Redirection. What are Guards ? Guards: Guards are essentially functions that you can define to determine wh

21.05.2024, 22:50:09 | Hashnode flutter