Sunday, September 30, 2018

Flutter - Back press in a Flutter Application.

As we know, mobile having a small screen to display content. That why most apps contain several screens to display different types of information.  Example: We might have a screen that shows products. Our users could then tap on a product to get more information about...
Share:

Flutter - How can send and receive data between screens.

In Flutter, the user interface is displayed through widgets. The widget is used to represent the data to the user and allows user interaction. In a mobile application, we can have multiple widgets(Screen) and that can interact with each other. During widget interaction,...
Share:

Saturday, September 29, 2018

P2P Kit is a better way to use Bluetooth in mobility.

Bluetooth is a way to exchange data with other devices wirelessly. Android and Ios provide Bluetooth API to perform several tasks such as: 1. Scan Bluetooth devices. 2. Connect and transfer data between devices. 3. Manage multiple connections etc. In this post, I'm...
Share:

Flutter- Screen push and pop with Navigator.

Flutter SDK provides us lot of widgets to create a beautiful screen. Building a user interface with Flutter is pretty simple. To create a big application, we need to create a multi-screen application. We will be required to move around the application or send data back to the...
Share:

Saturday, September 15, 2018

Flutter - Calendar and Date Format in Flutter.

As we know, Flutter has its own UI components, along with an engine to render them on both the Android and iOS platforms. To Display date, time and calendar. Flutter providing us some useful widgets like showDatePicker, DateTime, and DateFormat. In this post, we are going...
Share:

Sunday, September 2, 2018

Flutter - Form Validation in Flutter.

Flutter is a mobile UI open source framework to build high-quality native interfaces for iOS and Android apps with the unified codebase. Flutter has its own UI components, along with an engine to render them on both the Android and iOS platforms. You can compose your whole...
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...