Saturday, October 27, 2018

Flutter - Publish plugins and packages

publish-flutter-plugin
As a mobile developer, we always need some already developed own or third-party libraries. The library makes our project development fast,  save development time and some time provide us a great performance. The project development may become hard If we do not use all those third-party libraries in our projects.

Share:

Friday, October 19, 2018

Flutter – Login and registration authentication with Firebase

Authentication is a process of identifying a user that is usually based on a username and password. A user can access the certain resource in the application after successfully authenticate.

firebase-auth-login-register
Firebase provides a user authentication feature that is out-of-the-box. Firebase is a cloud service provider that can replace whole server-side part of your application. We do not need any server-side code or configuration. Firebase automatically stores your users’ credentials securely. This separates sensitive user credentials from your application data and lets you focus on the user interface and experience for your app. Firebase comes with a bundle of auth features support. As you can see below:

Share:

Saturday, October 6, 2018

Flutter - Firebase integration and configuration in a Flutter Application.

To build apps for mobile platforms, we always need a backend server to store data that support your apps. You also want to get your users log-in, which means your backend would have to scale. Then, after you solve your scaling problem, you would need to find creative ways to get more users and measure these activities on your admin dashboard. So, Firebase is a way that we can use as a backend for mobile application. 

Flutter Firebase configure
Flutter is Google's SDK for building mobile apps for iOS and Android. Firebase gives you access to backend services for mobile applications and provides various feature including authentication, storage, database, and hosting, without maintaining your own servers.

In this post, we going to integrate Firebase in Flutter project. We'll see, how can we create a project on Firebase console and integrate it into flutter project. Let's start it with the following steps.




Share:

Get it on Google Play

React Native - Start Development with Typescript

React Native is a popular framework for building mobile apps for both Android and iOS. It allows developers to write JavaScript code that ca...