Skip to main content

Posts

Form Input Widget on Flutter Android - Text, Slider, Switch, Date Picker, Buttons & Check Box

  Learn how you can use the different Form Input Widget on Flutter Android - Text, Slider, Switch, Date Picker, Buttons & Check Box This Application will give a basic idea like how you can create different widgets for the form panel designing. Video Tutorial import 'package:flutter/material.dart'; import 'package:intl/intl.dart' as intl; class FormWidgetsDemo extends StatefulWidget { const FormWidgetsDemo({super.key}); @override State createState() => _FormWidgetsDemoState(); } class _FormWidgetsDemoState extends State { final _formKey = GlobalKey (); DateTime date = DateTime.now(); double maxValue = 0; bool? checkBoxFeature = false; bool sliderFeature = false; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Hakeem Innovation Technology'), ), body: Form( key: _formKey, child: Scrollbar( child: Align( ali
Recent posts

GST Calculator Android Free App

 This App is designed to help the business people to perform the GST calculation with simple operation with custom percentage setting that can be easily adjusted according to their needs.   Effortless GST Calculations for Your Business! Introducing the ultimate GST (Goods and Service Tax) Calculator designed exclusively for Indian users. Tailored to simplify your billing and invoicing needs, this app provides separate Central GST and State GST tax rates based on your entered amount.   Key Features: 📊 Detailed Breakdown: Instantly view Base fare, CGST, SGST, and Total GST, empowering your business with comprehensive insights. 🔄 Inclusive & Exclusive GST: Easily calculate both inclusive and exclusive GST amounts. 📈 Predefined GST Percentages: One-touch calculations for 3%, 5%, 12%, 18%, and 28% GST rates. ⚙️ Customizable Settings: Configure the app to match your business requirements, ensuring flexibility. 💼 Perfect for Business Owners: Prepare billing invoices effortlessly with

Bottom Navigation Bar Flutter Sample Code

 Learn how you can design bottom navigation bar to your flutter based android application. Sample code for Bottom Navigation Bar import 'dart:developer'; import 'package:flutter/material.dart'; class AppBarBottomNavigationBar extends StatelessWidget { const AppBarBottomNavigationBar({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('Hakeem Innovation Technology')), body: Center( child: Column(children: [ Image.asset( "assets/images/flutter.png", width: 300, height: 300, ), RichText( text: const TextSpan( text: 'Flutter Learning', style: TextStyle( color: Colors.black87, fontSize: 20, fontWeight: FontWeight.bold), ), ), ]), ), bottomNavigationB

Tab Bar Android App Flutter - Example Code

Learn how to create tab bar on your android application using flutter. This Application will give a basic idea like how you can create tab bar with icons, text and controller. Code import 'package:flutter/material.dart'; class TabBarWidget extends StatelessWidget { const TabBarWidget({super.key}); @override Widget build(BuildContext context) { return DefaultTabController( length: 3, initialIndex: 1, child: Scaffold( appBar: AppBar( title: const Text('Contact Us'), bottom: const TabBar(tabs: [ Tab( icon: Icon(Icons.email), child: Text('Email'), ), Tab( icon: Icon(Icons.sms), child: Text('SMS'), ), Tab( icon: Icon(Icons.web), child: Text('Web'), ) ]), ), body: const

Set Images in Flutter Android Code - Sample Application

Learn how to set image asset on your android application using flutter. This Application will give a basic idea like how you can do the assets configuration and load images from local as well as from the network website.  

Create First Flutter Sample App for Android

Learn how you can create fist Android Flutter Project with sample layout using Visual Studio Code Editor and also deploy your sample application in your Android Device emulator using Android Studio.  

How To Create Dropdown List or Combo Box in Excel

Learn how you can create your own list of data and that can be shown as dropdown or combo box within the Microsoft Office.