News
Entertainment
Science & Technology
Life
Culture & Art
Hobbies
News
Entertainment
Science & Technology
Culture & Art
Hobbies
Intro Authentication is the important aspect and to it is also a key aspect when designing the app. Based on authentication we provide services for the authenticated users which sometimes also related to paid services / offerings. To handle the authentication in a higly professional way we make use of third party plugin called clerk ... Read more
In this blog we will be focusing on deeplinking integration right from creating. onelink in appsflyer dashboard and configuring flutter app to fetch the deeplink and utilise it to open the app. Deepink plays a crucial role in app user management it might be redirecting user’s to your offers, new feature alerts driving new app ... Read more
Introduction : Why Sonar ? Sonar (SonarQube & SonarCloud) helps developers identify and fix code issues before they become critical. It enforces clean code practices, making software easier to maintain over time. Why Should Developers Use Sonar? Are you looking to improve code quality, detect bugs early, and enhance software security? Sonar (SonarQube and SonarCloud) ... Read more
Chewie Player : Get started with the beautiful, simple and stunning video player implementation in your flutter app with Chewie. In this part of the tutorial let us see the detailed implementation. pubspec.yaml : Add the required dependencies to your project. chewie: ^1.7.4 video_player: ^2.8.2 main.dart : import 'package:flutter/material.dart'; import 'package:chewie/chewie.dart'; import ... Read more
Dynamic Links : Flutter dynamic links, we have already seen the implementation of dynamic links in our previous tutorial and in this part of the tutorial we will be dealing with referral system implementation. Referral system is the most important part of the popular e-commerce apps and we will be seeing how we can design ... Read more
Flutter App Links : Flutter app links is the concept where you can redirect users directly to your app and move them to a specific screen. pubspec.yaml : Here we will specify the go_router plugin dependencies: flutter: sdk: flutter go_router: main.dart : Providing the full code for app links implementation. import 'package:flutter/material.dart'; import ... Read more
Badges : Badges are the visual indicators they are shown on the screen stating the number of unread notifications, items added to cart and so on based on the app requirement. In this tutorial we will see the detailed explanation on this topic and also go through for the animations used in displaying the count ... Read more
Permission handler : In this blog we will be covering the permission handler concept in flutter app and thereafter we will fetch user permission for accessing device location, camera so on. pubspec.yaml : Let’s us add permission handler dependency with latest version. dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font ... Read more
Flutter Riverpod : In this part of the tutorial we will be covering riverpod implementation in flutter app.We will be going through the easiest way to implement state management in flutter. Flutter Riverpod is a state management library for Flutter, which is designed to simplify the way developers handle state in their apps. It’s an ... Read more
Flutter SegmentedButton : Flutter SegmentedButton concept is explained in this blog with the help of a movie ticket booking example. In Flutter, a segmented button is a UI element that presents a set of options to the user in a segmented control format. Segmented buttons are similar to radio buttons but have a different visual ... Read more
In this blog we will be going through stripe implementation in flutter app. Starting from account creation gathering keys required for initialization of payment sheet and so on. All the minor aspects are covered in this tutorial. pubspec.yaml : Add the stripe dependency and http for making a network call to fetch client secret. ... Read more