Skip to main content

Posts

Showing posts with the label Developer

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.  

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

How to Upload Folder in HTML 5

Uploading Files is very easy in web technologies but uploading folders with multiple files is very difficult because it contains multiple files extension. Recently Google added this upload folder in Google docs where you choose your directory at once so that the Google will take care of the entire files uploading. Uploading Folders Feature works only with chrome browser. While doing the research for this i came to know that google added some special tag in html that tag will only recongnised by chrome browser that means its not a standard tag with w3c. Here is an example of HTML File where it has input tag for file upload that is the standard of w3c. <html> <head> <title>Technology Innovation</title> </head> <body> <input type="file" id="file_input" directory="" > </body> </html> If you add webkitdirectory tag in input tag then you will dialog box willget chang...