SmallAcademy
SmallAcademy
  • Видео 271
  • Просмотров 4 262 150
Install and Config TailWindCSS with React + Vite
Tailwind css not working with your react + vite website ?? In this video i will show you how to setup as well as config TailwindCss with your project.
#tailwindcss #reaction #vite
Просмотров: 126

Видео

Create Bottom Navigation Menu in Flutter | Easy Flutter Tutorials With Dart
Просмотров 3,5 тыс.2 года назад
Create Bottom Navigation Menu in Flutter | Easy Flutter Tutorials With Dart
How to Implement Tabs With AppBar in Flutter
Просмотров 4,2 тыс.2 года назад
How to Implement Tabs With AppBar in Flutter
How to Host React Website With Firebase Hosting | React Firebase Deploy
Просмотров 13 тыс.2 года назад
How to Host React Website With Firebase Hosting | React Firebase Deploy
How to Connect Firebase With React Application
Просмотров 41 тыс.2 года назад
How to Connect Firebase With React Application
Drawer Navigation in Flutter | Easy Flutter Tutorials with Dart | Android Studio
Просмотров 2,3 тыс.2 года назад
Drawer Navigation in Flutter | Easy Flutter Tutorials with Dart | Android Studio
Building Live TV Streaming App with PHP Backend |Final Part| Category Details
Просмотров 6 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Final Part| Category Details
Building Live TV Streaming App with PHP Backend |Part -13| Listing Categories
Просмотров 1,6 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part -13| Listing Categories
Building Live TV Streaming App with PHP Backend |Part -12| Implementing Navigation Drawer
Просмотров 1,3 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part -12| Implementing Navigation Drawer
Building Live TV Streaming App with PHP Backend |Part -11| Improving Player
Просмотров 1,8 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part -11| Improving Player
Building Live TV Streaming App with PHP Backend |Part -10| Playing m3u8 Live URL in Exoplayer
Просмотров 7 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part -10| Playing m3u8 Live URL in Exoplayer
BeHappy: Free 4K & 8K Wallpapers Collection | App Promo
Просмотров 4723 года назад
BeHappy: Free 4K & 8K Wallpapers Collection | App Promo
Building Live TV Streaming App with PHP Backend |Part -9| Channel Details Page
Просмотров 1,5 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part -9| Channel Details Page
Building Live TV Streaming App with PHP Backend |Part - 8| Displaying Sports Channels
Просмотров 1,6 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 8| Displaying Sports Channels
Building Live TV Streaming App with PHP Backend |Part - 7| Displaying Channel From Category
Просмотров 1,4 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 7| Displaying Channel From Category
Building Live TV Streaming App with PHP Backend |Part - 6| Improving API Data Extraction Model
Просмотров 1,6 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 6| Improving API Data Extraction Model
Building Live TV Streaming App with PHP Backend |Part - 5| Displaying Channel in Slider
Просмотров 1,9 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 5| Displaying Channel in Slider
Building Live TV Streaming App with PHP Backend |Part - 4| Extracting Channels From API for Slider
Просмотров 3,6 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 4| Extracting Channels From API for Slider
Building Live TV Streaming App with PHP Backend |Part - 3| Creating Models and Adapters for Slider
Просмотров 3,6 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 3| Creating Models and Adapters for Slider
Building Live TV Streaming App with PHP Backend |Part - 2| Custom Toolbar and Adding Libraries
Просмотров 6 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 2| Custom Toolbar and Adding Libraries
Building Live TV Streaming App with PHP Backend |Part - 1| Setting Up PHP Backend & Local Server
Просмотров 16 тыс.3 года назад
Building Live TV Streaming App with PHP Backend |Part - 1| Setting Up PHP Backend & Local Server
How to Install WordPress Manually in cPanel | cPanel Tutorial For Beginners
Просмотров 1503 года назад
How to Install WordPress Manually in cPanel | cPanel Tutorial For Beginners
Building Live TV Streaming App with PHP Backend | Series Intro and App Demo
Просмотров 23 тыс.3 года назад
Building Live TV Streaming App with PHP Backend | Series Intro and App Demo
How to install WordPress in Subdomain | cPanel Tutorials | WordPress Tutorials For Beginners
Просмотров 7553 года назад
How to install WordPress in Subdomain | cPanel Tutorials | WordPress Tutorials For Beginners
Create Joke App in Android Studio With Free Rest API | Final Part| Loading Fragments
Просмотров 8393 года назад
Create Joke App in Android Studio With Free Rest API | Final Part| Loading Fragments
Create Joke App in Android Studio With Free Rest API | Part - 5 | Loading Fragments
Просмотров 4843 года назад
Create Joke App in Android Studio With Free Rest API | Part - 5 | Loading Fragments
Create Joke App in Android Studio With Free Rest API | Part - 4 | Loading Fragments
Просмотров 4423 года назад
Create Joke App in Android Studio With Free Rest API | Part - 4 | Loading Fragments
Create Joke App in Android Studio With Free Rest API | Part - 3 | Highlight Item in RecyclerView
Просмотров 4983 года назад
Create Joke App in Android Studio With Free Rest API | Part - 3 | Highlight Item in RecyclerView
Create Joke App in Android Studio With Free Rest API | Part - 2 | Implement Categories
Просмотров 6953 года назад
Create Joke App in Android Studio With Free Rest API | Part - 2 | Implement Categories
Create Joke App in Android Studio With Free Rest API | Part - 1 | Intro
Просмотров 2,7 тыс.3 года назад
Create Joke App in Android Studio With Free Rest API | Part - 1 | Intro

Комментарии

  • @Ujjawal-ow9kn
    @Ujjawal-ow9kn 2 дня назад

    hello to everyone during building this app i face problem image not loading only show blank so i did some research regarding this behavior so i found it yes so after android version 9 http don't work due to security so you need to change the http to https just copy and past this VideoAdapter/onBindViewHolder method ====== @Override public void onBindViewHolder(@NonNull ViewHolder holder, final int position) { holder.title.setText(allVideos.get(position).getTitle()); String imageUrl = allVideos.get(position).getImageUrl(); imageUrl = imageUrl.replace("http", "https"); // Replace http with https Picasso.get().load(imageUrl) .into(holder.videoImage); holder.vv.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (allVideos.get(position) != null) { Bundle b = new Bundle(); b.putSerializable("videoData", allVideos.get(position)); Intent i = new Intent(context, Player.class); i.putExtras(b); v.getContext().startActivity(i); } else { Toast.makeText(context, "Video data is null", Toast.LENGTH_SHORT).show(); } } }); }

  • @Tildensfascinatingfinds
    @Tildensfascinatingfinds 2 дня назад

    i am in last step and the data is not coming in fire base but the data is visible in console how to solve it

  • @user-ip8vy9ej8q
    @user-ip8vy9ej8q Месяц назад

    I have watched many videos but couldn't fix the issue. However, your comprehensive explanation and easy-to-follow directions made my day. Thank you so much for doing an amazing job. Thank you.

  • @Rigzin-kq2wg
    @Rigzin-kq2wg Месяц назад

    it' five years since you post this video, i was not able to fill new port number and get an error. (error : Cannot create file"C:\xampp\xampp-control.ini". Access is denied) . If anyone know, please let me know...

  • @burger5013
    @burger5013 Месяц назад

    Thank you bro God bless

  • @shalommbuthia7341
    @shalommbuthia7341 Месяц назад

    thankyou so much.This video has worked for me and it was just what i was looking for.

  • @manojbhatt8424
    @manojbhatt8424 Месяц назад

    thank you buddy

  • @dima408
    @dima408 Месяц назад

    I found this useful video! Thank you a lot!

  • @KavyaRS-hc3eq
    @KavyaRS-hc3eq Месяц назад

    Ughh...Finallyy resolved this. Thank you so much. You saved me 😬

  • @farhan6739
    @farhan6739 Месяц назад

    live tv admin source code please

  • @YashaswiniV-o4x
    @YashaswiniV-o4x Месяц назад

    I want that now bt the page was removed now in chrome..wt to do

  • @650Giantsfan
    @650Giantsfan 2 месяца назад

    I was sent an APK file for an app. Everytime i login into the app, it mentions firebase authentication

  • @karishmajadhav4218
    @karishmajadhav4218 2 месяца назад

    Php script source is not working.. how to get it

  • @prasath.j5933
    @prasath.j5933 2 месяца назад

    Thank you for the video brother

  • @emmawaters6312
    @emmawaters6312 2 месяца назад

    Hi, so when I tried to run this app, this is what it showed. I don't know what to do. Can someone help? Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make field private final java.lang.String java.io.File.path accessible: module java.base does not "opens java.io" to unnamed module @75bed22

  • @polkulotznad3987
    @polkulotznad3987 2 месяца назад

    we want to know how to put a back button overlaying on the video player

  • @polkulotznad3987
    @polkulotznad3987 2 месяца назад

    you should also add the live button besides the fullscreen button, we want to know how it works.

  • @islam_in_the_west
    @islam_in_the_west 2 месяца назад

    Source code link dont work

  • @user-ui3qf5xr9e
    @user-ui3qf5xr9e 2 месяца назад

    nice video

  • @xianfier6982
    @xianfier6982 3 месяца назад

    bro, onBackPressed() method is deprecated now. ;-(

  • @rkprint1223
    @rkprint1223 3 месяца назад

    Can you please provide live tv stream source code

  • @RahulSingh-jc8gv
    @RahulSingh-jc8gv 3 месяца назад

    Bro live tv app php backend source Code GitHub link not working.

  • @piyasidey2117
    @piyasidey2117 3 месяца назад

    Thank you.

  • @piyasidey2117
    @piyasidey2117 3 месяца назад

    Thank you.

  • @piyasidey2117
    @piyasidey2117 3 месяца назад

    Thank you.

  • @leloucchgeass2764
    @leloucchgeass2764 4 месяца назад

    I did follow most of your videos, and I stored the user profile, including the password, in the Firestore database. Not that Im trying this forget password video, it does not match the data in the Firestore. How can I update the password in the Firestore as well? Help me pls

  • @TanveerRajputTV
    @TanveerRajputTV 4 месяца назад

    Amazing work thanks

  • @tutorkeith6368
    @tutorkeith6368 4 месяца назад

    Everytime I change the port number an error shows up...

  • @tutorkeith6368
    @tutorkeith6368 4 месяца назад

    Everytime I change the port number an error shows up...

  • @Ryz3FN
    @Ryz3FN 4 месяца назад

    Is this in Kotlin or Java?

  • @333HDR
    @333HDR 4 месяца назад

    PHP Script Source link not working

  • @46.shubhamc.s.e74
    @46.shubhamc.s.e74 4 месяца назад

    Please use dark mode or viewers eyes might die

  • @harithakr8385
    @harithakr8385 4 месяца назад

    Hi. Could you share your video link where you have explained setting up firebase database to production mode and connect to database from react app?

  • @shebeshchen
    @shebeshchen 4 месяца назад

    I LOVE YOU.

  • @user-bt6ti1hq9c
    @user-bt6ti1hq9c 4 месяца назад

    How can we collect channle live url

  • @user-bt6ti1hq9c
    @user-bt6ti1hq9c 4 месяца назад

    how can we collect tv live link

  • @muinahamed5416
    @muinahamed5416 4 месяца назад

    How can i collect live tv channel link

  • @satyamkushwaha1202
    @satyamkushwaha1202 5 месяцев назад

    you can use shared preferences to stay at the user you logged in next time you opened the app

  • @vinayaksrivastava5484
    @vinayaksrivastava5484 5 месяцев назад

    Thanks a lot bro. I used your video for my app and in starting I thought you should provide complete source code but later on I realised I learned a lot and understood the things. So you are good teacher as well.

  • @jadepajara4422
    @jadepajara4422 5 месяцев назад

    Why does mine say access denied?

  • @SWARANG-fv5pq
    @SWARANG-fv5pq 5 месяцев назад

    hello i m getting an error whn i do admin login

  • @WarithAkbar-yw6fq
    @WarithAkbar-yw6fq 5 месяцев назад

    This is a great video. Appreciate at it . Didn't know it was so easy to be a coder.

  • @podclippalooza262
    @podclippalooza262 5 месяцев назад

    i like your course,but php source codes not downloaded,if posible may send me this php source code?

  • @esdrcgroup9061
    @esdrcgroup9061 5 месяцев назад

    Hii bro can i have your number

  • @ritaadhikari2437
    @ritaadhikari2437 5 месяцев назад

    I have 20+ MB image (single Image size) in storage. If I load BitmapFactory or directly from xml.. App crash ..oom.. Can Anyone help me to load the big size image without quality loss?

  • @MdAlifuzzaman
    @MdAlifuzzaman 5 месяцев назад

    brother please once again update the backend php download link. I visited your github profile but there are no backend php cource file. Please once again update it

  • @pulkit077
    @pulkit077 5 месяцев назад

    why not use firebase custom claims ?

  • @Death-metal99
    @Death-metal99 6 месяцев назад

    where to get api?

  • @kashishchopra7708
    @kashishchopra7708 6 месяцев назад

    pura youtube dekh liya meri problem solve nhi hori please help me

  • @myhowtotricks9987
    @myhowtotricks9987 6 месяцев назад

    When I try to access the backend code it shows error. Please provide the backend code sir