Skip to main content

Posts

Showing posts from January, 2023

Add Url Luncher fro Emails, calls, web Pages in flutter.

URl_Luncher Add A Flutter plugin for launching a URL. Add this Plugin to your project i pubspec.yml file's dependency. Exapmles InkWell( onTap: () async { await launchUrl( Uri(scheme: 'tel', path: '1664-54-55151'), ); }, child: Row( children: [ Padding( padding: const EdgeInsets.only(right: 10), child: Image.asset( AppImages.dialCallImage, fit: BoxFit.fill, ), ), Text( '1664-54-55151', style: Get.textTheme.headline6!.copyWith( color: AppColors.appGreyTextcolor, fontSize: 14), ...

Types of Widgets In flutter.

Types Of Widgets in Flutter . StateLessWidget Widget does not do Any change while running . Don't Store any Data. examples:- Text,Icon,Column,row,center, StateFullWidget Widget does changes while working in running. Dynamic In Nature Examples:- Button, Slider, checkBox,radio Box,textfield etc.

Flutter Detailed Course With ExtraFlutter Team

  Flutter Course- Flutter is UI (User_InterFace ) Based Software development kit created by Google . It is open-source ,single code based framework with run with the help Dart Programming Language, which helps in logic building and function creation. Dart is a client-optimized Programming Language for app creation.

How to Set PinCodeTextField in flutter with validation by Using GetX?

in controller class late TextEditingController otpTextController; @override void onInit () { otpTextController = TextEditingController (); super . onInit (); } @override void onClose () { otpTextController. dispose (); super . onClose (); } in View class  PinCodeTextField ( pinTheme : PinTheme ( shape : PinCodeFieldShape .box, borderRadius : BorderRadius . circular ( 3 ), fieldWidth : 65 , fieldHeight : 65 , borderWidth : . 9 , inactiveColor : AppColors .appGreyColor, activeColor : AppColors .appGreyColor, selectedColor : AppColors .appGreyColor, ), cursorColor : AppColors .appWhiteColor, appContext : context, ...

How to Set Hide and UnHide Password icon on SuffixIcon on TextformField ?

  suffixIcon: controller.isHidePassword                             ? IconButton (                                onPressed : () {                                  controller. showOrHidePassword ( false );                                },                         ...