Skip to main content

Posts

Showing posts with the label Android

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...

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 effo...

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.  

Flutter SDK Setup in Windows 11

Learn how to download and setup the flutter SDK in windows 11 environment variables and verify the version command from the command prompt. 

Redmi Note 5 Specification And Price

See the Redmi Note 5 Specification And Price Display 18:9 Full screen display Custom display with rounded corners Procesor & Memory Octa-core processor Snapdragon 625 2.0GHz max Adreno 506 Dimensions Height: 158.5mm Width: 75.45mm Thickness: 8.05mm Weight: 180g Display 18:9 Full screen display 15.2cm (5.99) (diagonally)18:9 screen aspect ratio 2160 x 1080 FHD+ resolution, 403 PPI, 1000:1 contrast ratio 450 nits brightness 84% of NTSC color gamut Sunlight display Night display Reading mode Color temperature adjustment Standard mode Battery 4000mAh (typ) / 3900mAh (min) Non-removable 5V/2A Camera & Video 12MP rear camera 12MP, 1.25μm large pixel 5-element lens, ƒ/2.2 aperture Dual LED flash PDAF Low light enhancement HDR Panorama Burst mode Face recognition 5MP front camera Beautify 4.0 Selfie-light Selfie countdown Face recognition 1080p/720p video, 30fps Networks & Connectivity Supports 802.11a/b/g/n pro...

How To Fix Resolve This Dependency In Android Studio

Solution For An Error : Resolve this dependency for ':app@debug/compileClasspath': Could not resolve com.android.support.appcompact. Your computer must be connected to internet to resolve this problem. Android Studio > File >  Settings > Build, Execution, Deployment  Gradle Uncheck the offline work and click OK to exit from Settings window  Go to Build Menu > Rebuild project Click the Try again link in Gradle notification and your pc will download the required library files from the internet and your problem will be resolved.

Gradle project sync failed. Basic functionality (e.g, editing, debugging) will not work properly.

Gradle is an open source build tool which help us to accelerate developer productivity. Go to Gradle Services website(http://services.gradle.org/distributions/) and download the latest version Download the latest version gradle-4.7-rc-1-all.zip ( Latest version while writing this article) and you can download greater than 4.7 if available and make sure the zip file contains "all" keyword (gradle-*.*-rc-*-all.zip). Go to your download location and unzip the downloaded file Android Studio > File >  Settings > Build, Execution, Deployment  Gradle Project-level settings -> Select Use local gradle distribution -> Select the unzip folder of downloaded gradle version -> Click OK button to exit from the Settings window. Please Wait until Gradle build completes and your problem have been resolved.   If gradle build failed, follow few more steps to get resolved Final step to resolve this error Go to your project -> Gradle script -...

Expense Manager Android Free App

This is the best android app for managing your daily expense . This app is designed based on best user experience (means : You don't have to type the description text and amount). Everything can be done in a couple of clicks.     📊 Track Expenses Effortlessly with the Best User-Interactive App! Discover the ultimate solution for managing your daily expenses effortlessly. Say goodbye to tedious typing – our touch screen wizard simplifies the process, ensuring a seamless experience for users of all levels. 🌟 Key Features: 🚀 Fast Action: Eye-catching icons and an intuitive user interface allow you to do more in less time. 💸 No Typing Required: Forget manual data entry; our app streamlines expense management for your convenience. 📈 Budget-Friendly: Effectively monitor your spending habits and stay within your financial goals. 📱 User-Friendly Design: Our app is crafted for swift navigation, providing ample screen space for quick actions. Enjoy a visually appealing interface...

Error:CreateProcess error=216 - Android Studion Gradle Error

Error:CreateProcess error=216, This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher This above problem is only occured to 32 bit edition of windows. Follow the below steps to resolve the error Click your Project in Android Studio Go to File Menu >  Project Structure SDK Location > JDK Location Uncheck the "Use embedded JDK " Select the installed jdk location After that create process error will be resolved but the new error Gradle Sync error will appear like this "Gradle sync failed: CreateProcess error=216, This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher" To fix the new problem reduce the memory Xmx768m in gradle.properties (Your Android Project > Gradle Scripts > gradle.properties  ) Thats it. Now en...

Android Studio Not Starting in Windows 10 - 32 Bit

Java Development Kit 9 (JDK) is available for 64 bit edition but not available for 32 bit edition. Many people are facing this issue that they have installed the android studio successfully and when they try to launch, no error occurred and no splash screen of android studio. The real solution is you have to install JDK 8 (32 bit) and install JDK 9 if you have 64 bit edition and then you have to setup the java path in system environment variable s.

How To Recover The Deleted Whats App Messages In Android

Learn how you can recover the deleted whatsapp messages with the following method. This process is little longer but this is the best way to recover your whats app messages. Go to Android Settings Application Manager > Select Downloaded Category > Select WhatsApp > Click Clear Data > Click Clear Button File Manager > Device Storage > WhatsApp > Database > Select the latest file based on the date value in the file name. Rename the latest file from "msgstore-2017-10-17.1.db" to   "msgstore.db" and file rename process completed successfully. Now open the WhatsApp and your WhatsApp will appear like you downloaded first time, so click the Agree and Continue after reading the Whats App Terms of Service and Privacy Policy. Verify your phone number.  After the verification.Whats App will check for any backup. Click the Restore button for the Whats App recovery messages. Congratulation now you have successfully resto...

Connect To JioFi Device Without Knowing The Passwords Using WPS

If someone in your home or your friends are using Jiofi device and he/she is not sharing the password with you then i am going to share you a simple trick, so you can easily connect to the jiofi router without the need of password and start using the unlimited internet. This trick can be achieved using the WPS technology (Wi-Fi Protected Setup; originally, Wi-Fi Simple Config) is a network security standard to create a secure wireless home network. Follow the steps to get the internet for free using the "WPS Push Button Method" Go to your Wifi Settings in your smartphone device like Android  Turn on your Wifi  Click the option button and select the  "WPS push button" and you will be seeing the popup window like this below picture. Now take your JioFi Device and in the right side, you will seeing the WPS button  Hold the WPS button for few moments and see the Jiofi display, so the wifi icon will blink. After few seconds, your smartphone device would hav...

Nokia 8 Launched - Price and Specification

Finally Nokia has developed an Android based smart phone and it's going to be a killer product against Samsung Galaxy & Apple iPhone series. Nokia Nseries was launched with Zeiss Camera lenses and this time nokia launched its smartphone with zeiss lenses on both front and back camera with 13 mega pixel and it is named as "Dual Zeiss Bothie Camera". First device developed by HMD Global and this device will support upcoming Android "O" version. Processor - 835 Snapdragon Storage - 64GB Internal Storage RAM - 4GB RAM Expandable - Update 256GB microSD cards Battery         - 3090mAh Display - 5.3-inch 2K LCD with Gorilla Glass 5 Port - USB 3.1 Type-C Headphone - 3.5mm Unibody design and glossy polished copper and polished blue colors and matte tempered blue and steel finishes. Price - 45,000 INR Approximately ( EUR 599 Launched price in london at 17 Aug 2017)

Download Windows Cortana For Android And iPhone

Microsoft Cortana is now available for iPhone, Android and even cyanogen OS. Cortana is an answer to Apple Siri but microsoft says, it's the first digital personal assistant that is designed to answer your voice commands or requests and more( Like cortana can tell you jokes, sports results, set appointment on calendar, change your appointments, tell you the nutrition fact of food and also can sing a song). Even you can activate Cortana by just saying "Hey Cortana" but this option is currently available in Windows Phone and to do that in your Windows Phone, you have to open the Notebook settings and then turn on the Let Cortana respond when you say "Hey Cortana"

Bookmark WhatsApp Messages For Instant Access

When some important messages sent by your family members or friends in Whatsapp either in group or personal chat, its very difficult to search them back, because in the mean time we got lot other messages in the same conversation. Now the whatsapp developer has decided to create bookmark feature, that you can mark important message as starred ( The feature is just like browser bookmarks that we do in our normal life ),    So that you can quickly or instantly access them very easily and this option is just available with Android OS . How to do this bookmark for Whatsapp messages. Select the message by tap and hold, then click the Star Icon from the Application bar. To view the starred message at later. Click the Menu button > Starred Messages. This feature is not available in Google Play, while writing this article and it will be available soon but if you want to try this feature now, then download Whatsapp from official Whatsapp website.

Is Your Smartphone Supports Android 6.0 Marshmallow

Android 6.0 Marshmallow is already released. Is your smartphone supports android marshmallow. Please check from the below link based on your mobile brand to see whether your smartphone model supports or not. Huawei Android 6.0 Marshmallow Supported Devices Asus Android 6.0 Marshmallow Supported Devices Xiaomi Android 6.0 Marshmallow Supported Devices Google Nexus And One Plus Android 6.0 Marshmallow Supported Devices Samsung Android 6.0 Marshmallow Supported Devices Motorola Android 6.0 Marshmallow Supported Devices Sony Android 6.0 Marshmallow Supported Devices HTC Android 6.0 Marshmallow Supported Devices LG Android 6.0 Marshmallow Supported Devices

Huawei Android 6.0 Marshmallow Supported Devices

 Android Marshmallow is finally available. List of Huawei Device that can be upgraded to Android 6.0 Marshmallow. Huawei Ascend P8 Huawei Ascend P8 Max Huawei Ascend P8 Youth Edition Huawei Honor 6 Plus Huawei Honor 7i Huawei Maimang 4 (Chinese version of Ascend G8) Huawei Honor 7 Huawei Mate S Huawei Mate 7 Huawei Honor 6 Huawei Mate 7 Huawei Honor 4X Huawei Honor 4C Huawei Ascend G7 Huawei Ascend G7 Plus