How to solve git hub error: RPC failed; curl 56 OpenSSL…
You needed to change the git config to use TLSv1.2 instead of SSLv3:
run this command in git terminal:
git config http.sslVersion tlsv1.2
if!-->!-->!-->!-->!-->!-->!-->…
How to Trigger Button Click in Flutter with example ?
We are going to create a very simple screen with only one button in the middle. Below is a code example that does just that.
class Home extends!-->!-->!-->…
Url launcher Package in flutter : How to implement it
URL: https://pub.dev/packages/url_launcherSupported Platforms: Android, iOS, Linux, macOS, Web, WindowsPopularity: 5,655 ❤
No app without a web!-->!-->!-->!-->…
How To Add Firebase To A Flutter App With Flutterfire in…
Firebase is a cloud-based platform that allows developers to focus on creating user-friendly applications for Flutterfire CLI. It functions without having!-->…
How to make custom button of BottomNavigationBar in flutter?
Widget build(context) {
return Scaffold(
bottomNavigationBar: Container(
height: 56,
margin: EdgeInsets.symmetric(vertical: 24,!-->…
Package for Onboarding Screen in Flutter
Nowadays mobile apps have an introduction screen for their apps. So they can show the user functions of their apps. It's really an important aspect of!-->…
Dart Programming – Overview
Dart is a general-purpose programming language developed by Google. It is primarily used for building mobile, web, and desktop applications. Dart is known!-->…
Download Flipkart Clone UI in flutter
Flutter E-Commerce UI Booking Full App Clone Template Flutter dashboard template that allows you to use your app UI pages both Android/iOS, Lots of!-->…
What is web socket in flutter ?
WebSockets are a protocol for bi-directional, real-time communication between clients and servers over a single, long-lived connection. They were first!-->…
How do I use hexadecimal color strings in Flutter?
In Flutter, you can use hexadecimal color strings to specify the color of various widgets. To use a hexadecimal color string, you can create a new Color!-->…