Skip to main content

Posts

Showing posts from 2019

laravel debugbar

This is a package to integrate  PHP Debug Bar  with Laravel 5. It includes a ServiceProvider to register the debugbar and attach it to the output. You can publish assets and configure it through Laravel. It bootstraps some Collectors to work with Laravel and implements a couple custom DataCollectors, specific for Laravel. It is configured to display Redirects and (jQuery) Ajax Requests. (Shown in a dropdown) Read  the documentation  for more configuration options. https://github.com/barryvdh/laravel-debugbar

Laravel AdminLTE

Laravel+AdminLTE3: Adminpanel Boilerplate It is a demo project for demonstrating what can be generated with new 2019 version of  QuickAdminPanel  tool. This boilerplate was fully  generated , without adding any custom line of code. https://github.com/LaravelDaily/Laravel-AdminLTE3-Boilerplate

Time Picker Dialog Box in android

Android Time picker are used a lot in android apps. Android Button Click And Open TatePickerDialog Box In your build.gradle add latest appcompat library, at the time 24.2.1 dependencies { compile 'com.android.support:appcompat-v7:X.X.X' // where X.X.X version } activity_main.xml Set On TextView Click Listener   < TextView   android :id= "@+id/tvTime " android :layout_width= "match_parent" android :layout_height= "44dp"   android :layout_alignParentStart= "true"   android :layout_alignParentLeft= "true"   android :layout_alignParentTop= "true"   android :layout_marginStart= "0dp"   android :layout_marginLeft= "0dp"   android :layout_marginTop= "38dp"   android :text= "DD-MM-YYYYY"   android :textSize= "24sp" />   After Select the date and  set the textview ==>MainActivity.java ...

DatePickerDialog Box

Android Date Time picker are used a lot in android apps. Android Button Click And Open DatePickerDialog Box In your build.gradle add latest appcompat library, at the time 24.2.1 dependencies { compile 'com.android.support:appcompat-v7:X.X.X' // where X.X.X version } activity_main.xml Set On TextView Click Listener   < TextView android :id= "@+id/tvDate" android :layout_width= "match_parent" android :layout_height= "44dp" android :layout_alignParentStart= "true" android :layout_alignParentLeft= "true" android :layout_alignParentTop= "true" android :layout_marginStart= "0dp" android :layout_marginLeft= "0dp" android :layout_marginTop= "38dp" android :text= "DD-MM-YYYYY" android :textSize= "24sp" /> After Select the date and and set the textview ==>MainActivity.java Find...