Author Archives: InnovationM Admin

Currying in JavaScript

What is currying? Currying is a technique of evaluating a function with multiple arguments, into a sequence of functions with a single argument. OR In other words, while a function, rather than taking all arguments at one time, takes the primary one and goes back to a new function that takes the second and returns Continue Reading »

What is Github?

Github is a code hosting platform that lets you and others work on the same project simultaneously. Github is the largest community of Developers where anyone can contribute to the project. By making a separate branch of the code a dedicated area is assigned to the developer so that there won’t be any clash between Continue Reading »

SonarQube Code Review Tool

Basic Documentation SonarQube is an automatic code review tool to detect bugs, vulnerabilities, and code smells in your code. It can integrate with your existing workflow to enable continuous code inspection across your project branches and pull requests. Overview In a typical development process: Developers develop and merge code in an IDE (preferably using SonarLint Continue Reading »

Bloc Pattern

Stream & Stream Builder What is  Stream? Stream is a series of things like items or widgets you want to show on the screen. Stream is useful when you are dealing with UI. Q-What is Stream Builder? A widget that builds everything beneath like every widget beneath rebuild if there are any changes that occur. Continue Reading »

HealthKit

HealthKit is a framework that is provided by apple that helps us in getting and managing user health-related data in a very easy and convenient way. We can integrate HealthKit in any application just by a grant the application to get access to the HealthKit data. so, the user data was easily available to that Continue Reading »

CKEditor with strapi

CKEditor5 react is a modern JavaScript-rich text editor with a modular architecture. It is one of the most used free WYSIWYG rich text editors used because of it is clear UI and customization features. Generate Plugin             Path – my-app npm run strapi generate:plugin wysiwyg Install CKEditor dependencies Path –  ./plugin/wysiwyg npm i @ckeditor/ckeditor5-react @ckeditor/ckeditor5-build-classic Continue Reading »

Flutter Layouts

Layouts in Flutter

The main concept of the Flutter framework is with the famous saying, “In Flutter, Everything is a widget”. So we can say that flutter assumes everything as a widget. Starting from Image, Icon, text, or layout too in an app, is a widget. Even the things which we don’t see in-app, are also widgets like Continue Reading »

Tailwind CSS

Tailwind CSS

Tailwind: Tailwind is the CSS framework that is used for developing unique designs. Tailwind does not work like other CSS frameworks like Bootstrap and materializes it doesn’t come with predefined components. Tailwind provides you with a set of CSS helper classes with the help of these classes you can create custom designs. Why do we Continue Reading »

Laravel Task Scheduling

Laravel Task Scheduling

  To manage scheduled tasks on the server, a fresh approach is offered by Laravel’s command scheduler. The scheduler permits you to boldly and uniformly outline your command scheduled in the Laravel application. Solely a single Cron entry is required, while using the scheduler, on your server. Task scheduler is outlined within the app/console/Kernel.php file’s Continue Reading »

Swipeable

Swipeable

Today we are going to discuss how we implement the swipe gesture in react native with the cell of the flat list and section list component in order to do some actions like update to-do and delete some data entry. It renders with its children within a panel and this component allows the children to Continue Reading »

Android Architecture

Android architecture is defined as the, A Guide to android app architecture with libraries for a different task, it helps us to create an app that is robust, testable, maintainable, and has less boilerplate code, Architecture component is part of Android jetpack Android jetpack is collection of android software component like data binding, lifecycles, livedata, Continue Reading »

Laravel Eloquent

Laravel Eloquent

  The Eloquent ORM included with Laravel gives a wonderful, basic ActiveRecord usage for working along with your database. With eloquent, each table in the database corporate a comparing “Model” that does utilize to connect with that table.  The model permits you to insert, update and delete the records from the table to recover or Continue Reading »

Mobile app trends

7 Key Mobile App Development Trends to Watch Out for in 2021

  The mobile application development industry is evolving like a whirlwind. If you want a business to survive this digital storm, you need to stay up-to-date with the latest mobile application development trends. Nowadays, mobile apps have become fundamental to transform business models and marketplaces. This dynamic digital world is evolving faster; famous applications that Continue Reading »

Content Provider in Android

Content Provider in Android

A content provider manages access to a central repository of data. A provider is part of an Android application, which often provides its own UI for working with the data. However, content providers are primarily intended to be used by other applications, which access the provider using a provider-client object. How to use a Content Continue Reading »

VelocityX in Flutter

VelocityX is a completely free, open-source framework developed for minimising UI development efforts and time. It makes flutter UI development a lot easier and joyful for the developers. The official documentation mentions that this framework is built on top of Flutter SDK. VelocityX provides multiple widgets, shortcuts and utilities to rapidly build custom UI designs. Continue Reading »

iOS Force Update

In iOS apps, it’s important that developers create a way to check the user’s app version and force the user to update the app. This solution not only requires code handling at the app level but also in the app backend. This solution will help in migrating all users to new functionality smoothly.   The default Continue Reading »

Nearby Connection API

Nearby connections is a peer-to-peer networking API that allows apps to easily connect, discover and exchange data with the nearby device in real-time, regardless of network connectivity. In other words, we can say that Nearby connections enable advertising, discovery and connection between nearby devices in a fully offline peer-to-peer manner. The connection between devices is Continue Reading »

Rest API in Flutter

If you have worked on mobile app development, you probably would have heard about API. API in a mobile app is required to allow users to communicate with other applications. This can be a backend server developed by you or even by any other company like Facebook, Google etc. REST API follows REST protocol and Continue Reading »

Changes in XCode 12 and iOS 14

WWDC,2020 which was held in June this year. Apple has announced all the new features and improvements that will be available for the developers all around the globe. As expected, many new features and advancements were rolled out. This has created a lot of excitement in the developer’s community. I will discuss the changes made Continue Reading »

Upload dSYM file manually into Firebase for crashlytics

Most of you would be familiar with Firebase integration in your apps, Firebase helps developers by producing human-readable crash reports. But sometimes, this fails due to dSYM files uploading failure. Debug Symbol files (dSYM) files are required by Firebase Crashlytics to give the app developers a human-readable crash report on its console. These dSYM files Continue Reading »