Posts

Password Manager in Flutter

Image
I have developed a password manager in flutter using HIVE database in which user can create his/her account and manage passwords. This password manager is secured as passwords are saved in the database and not shown to the user itself. Once a user saves a password they will not be able to see it again just he/she will be able to copy it only after successful Login. Splash Screen Login Screen Login error Signup Screen Passwords Page Password operations dialog Source Code: 👇👇👇 Click here  to download the source code of this project. Download apk of the app from  Here

Web broswer using tkinter and webbrowser module

Image
  Web Browser. Its a desktop app developed in tkinter. You can search anything here and some famous websites can be searched on one click only.  Modules Used: tkinter, webrowser Visual Form: Source Code: from  tkinter  import   * import  webbrowser browser  =  Tk() browser.title( "My Web Browser" ) browser.geometry( '500x500' ) browser.minsize( 500 , 500 ) browser.maxsize( 500 , 500 ) browser.configure( bg   =   '#C8C8B0' ) browser.wm_iconbitmap( 'web_icons/icon.ico' ) google_icon  =  PhotoImage( file   =   'web_icons/google.png' ) youtube_icon  =  PhotoImage( file   =   'web_icons/youtube.png' ) gmail_icon  =  PhotoImage( file   =   'web_icons/gmail.png' ) facebook_icon  =  PhotoImage( file   =   'web_icons/facebook.png' ) fiverr_icon  =  PhotoImage( file   =   'web_icons/fiverr.png' ) upwork_icon  =  PhotoImage( file   =   'web_icons/upwork.png' ) whatsapp_icon  =  PhotoImage( file   =   'web_icons/

Flutter SafeArea Widget

Image
SafeArea widget of flutter.   what is Flutter's SafeArea widget? Flutter’s SafeArea widget keeps pesky notification bars and phone notches from encroaching on your app's UI. It uses a MediaQuery to check the dimensions of the screen and pads its child Widget to match, making sure your app is safe on both iOS and Android . In simple words, SafeArea is basically a padding widget, which adds any necessary padding to your app, based on the device it is running on. If your app’s widgets are overlaying any of the system’s features like notches, status bar, camera holes, or any other such features, then SafeArea would add padding around the app, as required.   Constructor:   const SafeArea({ Key key, bool left: true, bool top: true, bool right: true, bool bottom: true, EdgeInsets minimum: EdgeInsets.zero, bool maintainBottomViewPadding: false, @required Widget child} )   Without safearea text clashes with the screen and half of the text hide under camera

Stopwatch in kivy using Clock object

Image
This post is about the development of stopwatch in kivy using the clock object of kivy. >>> Basically, clock object is about scheduling of intervals after  specific time (time should be in seconds) and we can schedule it for once only and we can unschedule it whenever we want. Here is the code with detailed comments      👇👇👇👇👇:- from  kivy.base  import  runTouchApp from  kivy.lang  import  Builder from  kivy.clock  import  Clock from  kivy.config  import  Config from  kivy.uix.screenmanager  import  Screen, ScreenManager #setting up the size of window Config.set( 'graphics' ,  'resizable' ,  True ) Config.set( 'graphics' ,  'width' ,  350 ) Config.set( 'graphics' ,  'height' ,  300 ) # global variables for time   msec  =   0 mmin  =   0 mhr  =   0 class   Stopwatch ( Screen ):      def   start_func ( self ,  tim ):          global  event          # event function is to check the seconds and convert it into minutes and then m

Download Whatsapp status without using any other application

Image
 Step 1:             >>Go to File manager               >>Open File Manager settings             >>Turn ON show hidden files option as shown in picture                 Step 2:             >> Go to Whatsapp Folder in file manager               >> Open Media Folder (in Whatsapp folder)             >> Then Open .Statuses Folder (in Media Folder) All statuses seen by you on your whatsapp are saved in this folder you can see them anytime you want. Stay Connected with our blog for more interesting tricks and posts.💓😎😍