Skip to main content

Posts

Showing posts from November, 2023

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.