Monthly Archives: March 2021

CLIENT-SERVER ARCHITECTURE

Client: It is a computer hardware device or software that accesses a service made available by a server. The server is often located on a separate physical computer. Server: It’s a physical computer dedicated to run services to serve the needs of other computers. Depending upon the service that’s running, it could be a file 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 »

Developing Android Library

Why is there a need to develop a library? Well, developing libraries help use their feature in many applications. You must have seen its live example in forms of payment gateway, chat library, retrofit, butterknife and many more. Creating a library in Android is effortless. Android library compiles into AAR file which also provides you Continue Reading »

Jmeter

Introduction to JMeter The Apache JMeter is 100% pure open-source software, You can use JMeter to analyze and measure the performance of web applications or different services. Performance Testing means checking the speed of web applications in different situations by increasing the number of users(heavy load) at a time, multiple and concurrent user traffic. JMeter is designed for testing Continue Reading »

Media Query

Some applications must adjust their layout depending on system configuration in order to have the best user interface. To get the current system details in Flutter, we can use MediaQuery. Creates a subtree where media queries are resolved to the specified data. For example, you can read the MediaQueryData. size property from the MediaQueryData returned Continue Reading »