6 12, 2021

Tab view in React-Native

2021-12-06T05:12:59+00:00December 6, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

It provides various packages to create tabs like views in the application. So react-native-tab-view is one of them. This component is implemented using the react-native-pager-view which is another component that allows the user to swipe left or right throughout the [...]

28 09, 2021

React-Native-Fast-Image Introduction

2021-09-28T05:41:47+00:00September 28, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

For the most part, React Native's Image component handles image caching in the same way as browsers do. If the server is returning proper cache-control headers for images you'll generally get the sort of built-in caching behavior you'd have in [...]

2 09, 2021

Service layer in Angular

2021-09-02T05:42:44+00:00September 2, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

Angular service is very useful to organize business logic or data in the different components of an application. The methods written in the service file can be invoked from different typescript files of a component. The controller is responsible for [...]

31 08, 2021

Hooks in React

2021-08-31T05:49:40+00:00August 31, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

Hooks are the new feature of the react. They let you use the state and other features of React without creating a class. They are mainly used to handle state and other side effects in react functional components. Side effects [...]

9 06, 2021

Rename package name in React-native

2021-06-09T04:30:04+00:00June 9, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

In react-native, To create a new application we use the following command: react-native init MyApp This command will create a package name with com.myapp. Sometimes, if your application is created with the wrong package name or bundle id or you [...]

16 06, 2020

React Native Push Notification – IOS

2020-06-16T06:23:59+00:00June 16, 2020|Mobile|0 Comments

|
| ByWebner

Push Notification A push notification is a message that pops up on a mobile device to notify a user that a specific action has occurred in that mobile app. Below are the steps to configure Firebase in your application (To [...]

2 06, 2020

Deep Linking in React Native – Android

2020-06-02T06:36:04+00:00June 2, 2020|Mobile|0 Comments

|
| ByWebner

Deep Linking Deep linking is a way that allows an app to open a specific screen from an external link. It makes your app capable of navigating to a specific screen in response to external events like Push Notification, Emails, [...]

12 12, 2019

How To Make Provisioning Profile For iOS?

2019-12-12T08:50:06+00:00December 12, 2019|Mobile|0 Comments

|
| ByWebner

Provisioning Profile for iOS A provisioning profile binds developers and devices to an authorized iPhone Development Team and enables a device to be used for testing. Just Like android, you can’t install your application directly on the iOS device. Provisioning [...]

11 10, 2019

Persist Data Using AsyncStorage in React Native

2019-10-14T08:29:32+00:00October 11, 2019|Mobile|0 Comments

|
| ByWebner

Persist Data Using AsyncStorage in React Native There are various ways to preserve the data in React Native but AsyncStorage is the most recommended way to persist data in your React Native applications as it is a built-in feature. AsyncStorage [...]

9 09, 2019

Facebook Share – React Native

2019-09-09T12:04:18+00:00September 9, 2019|Mobile|0 Comments

|
| ByWebner

Facebook Share-React Native React native provides Facebook SDK to integrate facebook APIs in react native application. It can be used for both (iOS and Android) platforms. Below is the documentation to configuration this package for android: Installation: 1. Go to [...]

27 03, 2019

How to read Mobile Hardware and Operating system Details in React Native

2019-03-27T12:01:38+00:00March 27, 2019|Linux, Windows, Mac, Mobile, Others (Technical), Web Development|1 Comment

|
| ByWebner

Steps to read Mobile Hardware and Operating system Details in React Native To get the android and ios device information like UDID, version, build, operating system etc - We can get this information by using react-native-device-info plugin provided by react [...]

Go to Top