Build a Java Desktop Application - Full Course (Sudoku)

Поделиться
HTML-код
  • Опубликовано: 18 дек 2024

Комментарии • 232

  • @natka5154
    @natka5154 Год назад +32

    I love it. I can code in Java, but I've never done an application from the very beginning on my own. This video is really valuable and helped me a lot with starting my own project. Thank you

  • @michaelgreene6441
    @michaelgreene6441 4 года назад +84

    ray: "...Not trying to go through this super quickly if you're wondering why I'm going slow"
    me: *furiously typing*

  • @nilsodor
    @nilsodor 3 года назад +48

    This amount is insane for someone that just learned how whileloops works.
    I'm looking forward to fixing a typo that exists somewhere in the range of lines 41 - 267 :)

  • @parthasarathi2565
    @parthasarathi2565 4 года назад +242

    LOL love this guy " I don't have a degree in anything" . While I'm sure many of us here have our masters and could barely write a proper program

    • @alwaysmuede9323
      @alwaysmuede9323 3 года назад +25

      i just got a bachelors degree in computer science and have barely any programming experience.

    • @vaishnavi_as
      @vaishnavi_as 3 года назад +1

      @@alwaysmuede9323 😅 same here.

    • @UTRG-UnderTheRain
      @UTRG-UnderTheRain 3 года назад +13

      One of my best mates at school 30 years ago was crazy knowledgeable he smashed out a packman game in an hr once in class in z80 assembler just because he had a free hour even the teachers were like can I have a copy of that, I just wished I'd listened more to him and started to learn then and not waited so long.

    • @loveCZmrdu
      @loveCZmrdu 3 года назад +2

      @@alwaysmuede9323 The best way to learn coding is to code. :) They wont teach you how to code properly, you should learn it by yourself.

    • @asylum9868
      @asylum9868 Год назад

      plz someone tell me do i have to install java fx in vs code for this?

  • @edgar1906
    @edgar1906 4 года назад +40

    "I'm not trying to go through this super quickly, in case you're wondering why I'm moving so slowly..."
    I don't know if that was sarcasm or not...lol

  • @oght7602
    @oght7602 4 года назад +110

    For a moment I thought Bjorn Lothbrok :)

    • @wiseAss
      @wiseAss 4 года назад +1

      Coincidentally, my nickname when I played sports as a kid was "Scrap Iron."

    • @AkshayKumar-od9uo
      @AkshayKumar-od9uo 4 года назад +1

      Lol, yea. This is my first time landing on this channel and that was my first thought.

    • @EduardoSanchez-un2hh
      @EduardoSanchez-un2hh 4 года назад

      He is: After fasting for 2 months

    • @paulkiragu8120
      @paulkiragu8120 3 года назад

      I was wondering why no one else noticed haha

    • @shantanulokhande1792
      @shantanulokhande1792 3 года назад

      🤣🤣🤣🤣

  • @liamcahill4955
    @liamcahill4955 3 года назад +24

    It's a bit hard to follow because the pace is so fast. People appreciate it when the instructor does the exercises in real-time and is able to comment live, too, as opposed to doing a voice over after-the-fact.
    That being said, I am glad to have found this tutorial, and I was able to learn some things from it.

  • @rankokoturic6633
    @rankokoturic6633 3 года назад +12

    I did the whole project but i will have to look at the tutorial again in hopes of figuring this out. Before this project I have made one application in javafx... Thank you for your work 😁

  • @BlissinSerenity
    @BlissinSerenity Год назад +12

    Please start the project with making a UML design, without a design it's very hard to keep track of relation between different classes

  • @mr.lawliet
    @mr.lawliet 4 года назад +18

    Please do more of these videos

  • @LiamClowMusic
    @LiamClowMusic 2 года назад +8

    You gotta run the application as you go to better visualize the progression of the application

  • @rohitpadile7088
    @rohitpadile7088 8 месяцев назад

    It covers everything in Java. Thankyou. This was a Revision Crash Course for Me

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

    This was nice. Thank you for sharing rhis tutorial!

  • @amroulouay6819
    @amroulouay6819 Год назад +9

    That is not a “course”, this is “making desktop app speedrun”

    • @amroulouay6819
      @amroulouay6819 Год назад +5

      Just promoting his courses every 15 seconds, that is so annoying

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

      @@amroulouay6819 I agree with you, but I just used this as practice and it was a good introduction to javafx

  • @sumitkukreja9968
    @sumitkukreja9968 9 месяцев назад +3

    3 hours i code this application without running, now I'm banging my head into the wall.

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

    public static boolean puzzleIsSolvable(int[][] puzzle) {
    //step 1:
    Coordinates[] emptyCells = typeWriterEnumerate(puzzle);
    //I would like to stress that using lots of nested loops is only appropriate if you are certain that
    //the size of input O(n) is small.
    int index = 0;
    int input = 1;
    while (index < 10) {
    Coordinates current = emptyCells[index];
    input = 1;
    while (input < 40) {
    puzzle[current.getX()][current.getY()] = input;
    //if puzzle is invalid....
    if (GameLogic.sudokuIsInvalid(puzzle)) {
    //if we hit GRID_BOUNDARY and it is still invalid, move to step 4b
    if (index == 0 && input == GRID_BOUNDARY) {
    //first cell can't be solved
    return false;
    } else if (input == GRID_BOUNDARY) {
    //decrement by 2 since the outer loop will increment by 1 when it finishes; we want the previous
    //cell
    index--;
    }
    input++;
    } else {
    index++;
    if (index == 39) {
    //last cell, puzzle solved
    return true;
    }
    //input = 10 to break the loop
    input = 10;
    }
    //move to next cell over
    }
    }
    return false;
    } at 1:11:24 why index less than 10, it has to less than 40 and the loop "while (input < 40) " input need to less than 10 because the value in sudoku just from 1 to 9. Do i think wrong in anything. I am very pleasure to recieve your response

  • @itspurelypassionate
    @itspurelypassionate 4 года назад +7

    I am learning java currently and i am putting this video in watch later 👌🏼

  • @mihajlocolic01
    @mihajlocolic01 Год назад +1

    "NO ADS" clicks on video and ad starts 😂

  • @italopereiraramos9056
    @italopereiraramos9056 4 года назад +4

    Thank you, from Brazil!

  • @Anonymus-xf6hm
    @Anonymus-xf6hm 4 года назад +3

    I swear you read my mind, I attempted this like 2 weeks ago

  • @marlunyu
    @marlunyu Год назад

    Really enjoyable doing this. :)

  • @moazim1993
    @moazim1993 2 года назад +2

    My guy just writes the whole thing one shot, no runs in between

  • @karincentenaro356
    @karincentenaro356 Год назад +2

    great video, I am going deeply on Java programming and it's so cool building a Sudoku game for a first small project! thank you!

    • @crunchgaming5202
      @crunchgaming5202 Год назад +1

      bro , in this game , I am able to delete the numbers generated randomly by the java program , user shouldn't be able to remove these numbers. Also , game is starting from same point from where i left it even after i close the application , How to start a new game ??. Is there any key to press . Also when i am fill all the values in the game and hitting enter . It is not displaying any pop message , like you have won or lost as explained in the video.

  • @DatascienceConcepts
    @DatascienceConcepts 4 года назад +15

    Excellent tutorial! I try never to miss any of your videos :-)

  • @TechnicalDhruva
    @TechnicalDhruva 4 года назад +1

    Thanks i was searching for java application build

  • @jamief123
    @jamief123 4 года назад +24

    Next up: Tutorial on how to insulate a house.

    • @wiseAss
      @wiseAss 4 года назад +2

      Plumbing and electricity is next, but I'll do the insulation tutorial after that.

  • @Align_SD
    @Align_SD 3 года назад +4

    Does this work for anyone? I getting the game board to show up but whenever i put any values in the boxes theres no confirmation or error based off the value inputted... Also how is he getting the sudoku solver to work I don't see it imported into any other packages

  • @chamanthipenmetsa
    @chamanthipenmetsa 2 года назад +3

    Actual tutorial that explains the code here - Link to the actual tutorial explaining this code - ruclips.net/p/PLEVlop6sMHCoVFZ8nc_HmXOi8Msrah782

  • @terminalogy8922
    @terminalogy8922 4 года назад +4

    We need more!

  • @ColonelJackery
    @ColonelJackery 4 года назад

    At 6:30, what is the (Coordinates) o; to the right of the equals sign doing?

  • @lousocool1104
    @lousocool1104 3 года назад +13

    I am still so confused on what is happening. Maybe I need to learn more before I watch this video but I fear I’ll never understand.

    • @nilsodor
      @nilsodor 3 года назад

      I just learned functions, while loops and such but this is way over my head! Good to know where it's heading though!

  • @Jay_D_Lincoln
    @Jay_D_Lincoln 3 года назад +4

    Too much competition in the industry. See now Bjorn Ironside doing coding!

  • @alwysrite
    @alwysrite 4 года назад

    that is the kind of teaching I like !! thankyou

  • @nabarupghosh9743
    @nabarupghosh9743 4 года назад +9

    How do you guys get to know what i am searching for in the Internet.
    Literally i experienced the same in the last 13 vids!!!

  • @sibaabi2526
    @sibaabi2526 2 года назад

    Are you acted by chance as Björn Ironside in Vikings :)
    Thanks for the contents

  • @ahsanyusob915
    @ahsanyusob915 2 года назад

    Hi, I've written the code as I was following through your tutorial and made sure that there is no compile error. I can run the program just fine now, but it is just looping in main method without any sudoke GUI popping out. I have no problem with library import and javafx seems to be included already without needing to add dependencies, so the only thing I did differently is that I didnt download javaFX SDK 11 as you did show in (12:09). Could you help me with this?
    I am using java 8 (1.8.0_341) , Gradle 6.9.3, IntelliJ IDEA 2021.2.4 (Community Edition)

    • @ahsanyusob915
      @ahsanyusob915 2 года назад

      oh nevermind. It seems that I created an infinite loop by not adding any "index++" in a while loop where the condition is index

  • @BikeCodeAcademy
    @BikeCodeAcademy Год назад +1

    Hello for some reason i cannot import the javafx can you help, i did what you did and for some reason it is not working

  • @samirkarki192
    @samirkarki192 4 года назад +1

    Thank you Bjorn :)

  • @utkarshrastogi8791
    @utkarshrastogi8791 4 года назад +1

    Pls make more of these !!!

  • @BAP_great
    @BAP_great Год назад +1

    Can someone please tell me which ide is this guy using to code. How can code something without knowing where to code

    • @amroulouay6819
      @amroulouay6819 Год назад +2

      IntelliJ IDEA

    • @BAP_great
      @BAP_great Год назад

      I can't tell you how grateful I am. Thankyou so much. : )@@amroulouay6819

  • @dhawaljoshi
    @dhawaljoshi 2 года назад +2

    tutorial seems to be over dependant on IntellIJ IDE. JavaFX related steps are hard reach to understand.

    • @acardosolima1991
      @acardosolima1991 2 года назад

      The IDE just lets you to type less repetitive code, but you can still do it by yourself with your preferred editor (even notepad would work)

  • @pkralll2987
    @pkralll2987 4 года назад +1

    Please do more like this

  • @mrcostel3969
    @mrcostel3969 4 года назад

    I'm grateful that I found this video. Thank You!!

  • @vaneeshar894
    @vaneeshar894 3 года назад +2

    Hi! I subscribed the moment you said, u like to teach while building. In programming I believe It too much talking of concept, principles and metric. We end up learning by heart but when we have to apply in terms of coding not many can .. I’m a Msc in software engineering and a part-time teacher too ..

  • @ayushsingh-gl6wm
    @ayushsingh-gl6wm 4 года назад +2

    Please upload an course on ui/ux.

  • @dr.mondgnu
    @dr.mondgnu 3 года назад

    Cool Start but the first section starts with things thtat are really hard for beginners even though you said that this tutorial is for begiinners

  • @kehcat1
    @kehcat1 4 года назад

    thank you so much for this vid!!!!

  • @Sabo_agenda
    @Sabo_agenda 4 года назад +3

    What IDE is good for Java?

    • @wiseAss
      @wiseAss 4 года назад +2

      If you plan to be involved in Android Development exclusively, then pick Android Studio. Otherwise, there are three other main options.
      - Intellij IDEA: This is what Android Studio is based on. I use this in the tutorial here, and I highly recommend it.
      - Eclipse: Eclipse is a very solid open source community tool. It was my first Java IDE back in 2013, and it is pretty good for anything OTHER THAN ANDROID. DO NOT USE IT FOR ANDROID. I have used it for both Java EE (Web Apps) and Desktop though.
      - Netbeans: Yeah.... not a fan but some people love it.

    • @fille570
      @fille570 3 года назад

      I'm a last year cs (information Systems) student and my teacher uses either Eclipse or Netbeans

    • @mihajlocolic01
      @mihajlocolic01 2 года назад +3

      IntelliJ Idea

  • @dantapp5925
    @dantapp5925 4 года назад +1

    Thank you, Bjorn Lothbrok

  • @stefanoscipolo4895
    @stefanoscipolo4895 10 месяцев назад

    Hy i copy exactly what you did but when i run the main i get this:
    WARNING: Unsupported JavaFX configuration: classes were loaded from 'unnamed module @6c6c7c5a' and it show a blanc (exept for the background color) but without the line or number how can i fis that? any advice?

  • @mdajazalirehmani8362
    @mdajazalirehmani8362 4 года назад

    Hey Guys !!
    I m a future Physicist and Only thing i think missing is Tutorial on Fortran Programming so will u guys make on that please.....

  • @_demirfrontend
    @_demirfrontend 4 года назад +4

    Man you re doing what, It seems like you saying its a fundamental knowledge and begennier can do that. But you only use shortcuts and doesnt give any clue about that , while watching its a bit complicated , I wish you could realize that

  • @amiganer681130
    @amiganer681130 4 года назад

    In UserInterfaceImpl the "thickness": Why not init thickness by 2 and only change if needed, so the "if else" the "else" can be omitted. Would that be bad style?

  • @sanskarchhajed9397
    @sanskarchhajed9397 2 года назад +1

    Which software you are using for writing code

    • @marlunyu
      @marlunyu Год назад

      I think it's IntelliJ.

  • @neilricardosantiago7554
    @neilricardosantiago7554 3 года назад

    The intro looks he's about to do an orchestra

  • @MichaelSmith-jq9br
    @MichaelSmith-jq9br 3 года назад +1

    anyone else not getting the application to work? It's saying "Open JDK Platform Binary is not responding".
    Thanks

  • @praveensinghkanonia9003
    @praveensinghkanonia9003 4 года назад +2

    From Where can i download all jars file for this?

  • @snigdhasiripurapu1557
    @snigdhasiripurapu1557 9 месяцев назад

    In which platform did you code? I am trying to do it in eclipse and it's not that accurate. Can you please reply about it.

  • @pr6231
    @pr6231 3 года назад

    You looking like Bjorn ironside from Vikings tv series :)

  • @e_velog
    @e_velog 3 года назад

    i swear this video is so much better than wtv they've taught us in my java classes in uni lol

  • @elnino9139
    @elnino9139 2 года назад

    where is the video that you talked about app container ?

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

    I wish there was testing and information on how to run it because I just have a bunch of code now but I don't know how to run or test it...

  • @AnonymousAccount514
    @AnonymousAccount514 2 года назад +1

    Damn…the only reason I wanted to watch this was to see how you coded for building the jar file

    • @h-girlradio4699
      @h-girlradio4699 2 года назад +1

      THANK YOU! This dude wasted my mf time! 😑

    • @AnonymousAccount514
      @AnonymousAccount514 2 года назад +1

      @@h-girlradio4699 I skipped to the end to make sure he did or didn’t cover it

    • @ahsanyusob915
      @ahsanyusob915 2 года назад

      you can refer to this video from bro code: ruclips.net/video/jKlyHG-zbjk/видео.html

    • @ahsanyusob915
      @ahsanyusob915 2 года назад

      you can also use gradle build tool which will create an executable jar file for you.

  • @mihainov
    @mihainov 4 года назад

    Why make an utility method to clone arrays isn't arr.clone() or Arrays.copyOf(arr) identical?

  • @neversettle2873
    @neversettle2873 2 года назад

    Can i add sudoko game and library managemnet system in my resume. Is that good to get software developer job in a product based company?

  • @jacquelinezapatasaavedra1516
    @jacquelinezapatasaavedra1516 2 года назад

    Any degree? I have to finish this video!! .I will subscribe if I like it 👌. Java is a difficult language.

  • @JadelynneRedfern
    @JadelynneRedfern 4 года назад +1

    Hello could you please make a tutorial on how to code an online shop using php, bootstraps and MYSQL 🥺

    • @arnav520
      @arnav520 4 года назад

      Php🤦‍♂️

    • @wilburw4554
      @wilburw4554 4 года назад

      @@arnav520 why not? php is used for web development

  • @mohammadthousif3869
    @mohammadthousif3869 4 года назад

    Hey, what all concepts should one be thorough with... In order to code for the above sudoku...?
    AND BTW which IDE is that one?

    • @wiseAss
      @wiseAss 4 года назад +1

      I go over every concept in my course, Working Class Java. This free tutorial is a compliment to that course, and I explain every topic from absolute basic Java to advanced architecture and OOP principles. I have links to the course in the pinned comment, and FreeCodeCamp has also kindly posted them to the description of this video.
      For my IDE, I use Intellij IDEA with Darcula theme enabled.

  • @avinash4305
    @avinash4305 8 месяцев назад

    hey, I didn't find your paid course on skillshare, would you mind share it again?

  • @adeni4359
    @adeni4359 4 года назад

    What is most popular programming language for building desktop applications, Java or C#? Or are there others?

    • @waqasahmed8660
      @waqasahmed8660 4 года назад +1

      Java because u can build for windows, mac, linux. But with C# u are limited to windows only

    • @ahmedbathily7013
      @ahmedbathily7013 3 года назад

      @@waqasahmed8660 so why people still saying java is dead

    • @waqasahmed8660
      @waqasahmed8660 3 года назад +3

      @@ahmedbathily7013 bcoz they only know about their workplace where java is not being used lol

  • @MohdYaqoob-s3k
    @MohdYaqoob-s3k 7 месяцев назад

    good to see ragnar lothbrok coding

  • @marshallhughes4514
    @marshallhughes4514 4 года назад +1

    Ryan this looks good. Is there a place where it shows what IDE and JDK you are using and how to install them on Mac OSX?
    Thank you.

    • @wiseAss
      @wiseAss 4 года назад +3

      Yes, in my course Working Class Java, which this tutorial is a compliment to. To answer your question though, I use Intellij IDEA with Dark Theme enabled, and JDK 13. You can probably get away with just using Java 11 though; but it depends on what version of JavaFX you want to use.

    • @marshallhughes4514
      @marshallhughes4514 4 года назад

      @@wiseAss Got it - thanks.

    • @chamanthipenmetsa
      @chamanthipenmetsa 2 года назад

      @@wiseAss please add your course link in the video description
      Link to the actual tutorial explaining this code - ruclips.net/p/PLEVlop6sMHCoVFZ8nc_HmXOi8Msrah782

  • @bellefille8719
    @bellefille8719 4 года назад

    Hi thanks buddy for this!I have a question about :setX,...;where is that .which is class ?i see the clip but you don't define ,please help me?!!!!!!!!!!!!!!!!!!!!!!!!!

    • @wiseAss
      @wiseAss 4 года назад

      You are probably thinking of the setX() method from the Rectangle Class in JavaFX. I use the Rectangle class to create lines (among other things), and the setX()/setY() methods will set the X, Y Coordinates of the line relative to the application window.
      Visit the Open JFX documentation to see what their methods and classes do. I would post the link but it will probably be grabbed up by a spam filter.

  • @koipix
    @koipix 2 года назад

    Does this work on Andriod too? Will try to improvise.

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

    27:00 And here comes a plane....................

  • @khawajahamdanahmad677
    @khawajahamdanahmad677 4 года назад

    Please make a video on java fxml using intellij idea

  • @ignitehope
    @ignitehope 4 года назад

    Alright let's do this

  • @asylum9868
    @asylum9868 Год назад

    just finished the course
    and its awesome
    but there is just a tiny bit of problem
    my sudoku generation is wrong
    like same no is coming in the same block twice
    can someone help me?
    i have checked everything is according to the video

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

      got the same issue, did you find any solution?

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

      When you run the code, a sudoku will be generated. If you close the window without solving it, the same sudoku will be seen next time as well. But if you solve this and then generate a new game with the dialog box it shall give you a new sudoku game with values placed at different locations. If your problem is different do let me know.

  • @crunchgaming5202
    @crunchgaming5202 Год назад

    how to start this sudoku application as a new game , it is starting the application from same place where i am leaving the puzzle , even if close it.

  • @PAUL-cs2vh
    @PAUL-cs2vh Год назад

    Bro what app you are using for java

  • @mochoye
    @mochoye Год назад

    Can anyone help me with private final GameState gameState; I am getting error at GameState

  • @nwajiobichibueze7482
    @nwajiobichibueze7482 2 года назад

    After running the app, the sudoku board displays texts in a foreign language, how can I change it to english?

    • @crunchgaming5202
      @crunchgaming5202 Год назад

      I don't know how to finish the game even , because when i am hitting enter after filling all the boards of the sudoku game , it's not displaying a message , rather it's making the field empty on which array is pointing to

  • @moumitaghosh9151
    @moumitaghosh9151 4 года назад +1

    What IDE is usual for Java?

    • @wiseAss
      @wiseAss 4 года назад +2

      If you plan to be involved in Android Development exclusively, then pick Android Studio. Otherwise, there are three other main options.
      - Intellij IDEA: This is what Android Studio is based on. I use this in the tutorial here, and I highly recommend it.
      - Eclipse: Eclipse is a very solid open source community tool. It was my first Java IDE back in 2013, and it is pretty good for anything OTHER THAN ANDROID. DO NOT USE IT FOR ANDROID. I have used it for both Java EE (Web Apps) and Desktop though.
      - Netbeans: Yeah.... not a fan but some people love it.

    • @moumitaghosh9151
      @moumitaghosh9151 4 года назад

      @wiseAss thnq

  • @YashSingh-tm3hd
    @YashSingh-tm3hd 3 года назад +1

    Can this be put in a resume?

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

    comment your code next time for the people you are showing it too, so they comment it aswell, so when they are done with this project and want to look at their creation after let's say (4 months) they still know what is what, what comments are meant for basically.

  • @alphabee8171
    @alphabee8171 2 года назад

    tf how come nobody noticed ryan exactly looks like ragnar's elder son from vikings

  • @semionrutshtein1745
    @semionrutshtein1745 4 года назад

    Thank you
    Great.

  • @Palkia8-Bit
    @Palkia8-Bit 4 года назад

    Read the description for the timestamps.

  • @sudarshanrbhat7686
    @sudarshanrbhat7686 3 года назад

    Hey Bjorn!

  • @pranavnyavanandi9710
    @pranavnyavanandi9710 2 года назад

    Is there a simpler project for my first time making one? 17 minutes into the video and it feels pretty overwhelming.

  • @mohannads7391
    @mohannads7391 2 года назад

    I am getting an ERROR when I try to run it " WARNING: Unsupported JavaFX configuration: classes were loaded from 'unnamed module @496553fd'"
    Can anyone help?🤔🤔
    Thanx in advance 😁😁😁

    • @mohannads7391
      @mohannads7391 2 года назад

      Another thing that the gridlines and the textfields do not show😅😅

  • @iocusdigital6534
    @iocusdigital6534 11 месяцев назад +1

    When there is no top-down design preliminary explanation, but just a linear copy from source with voice over with random comments thrown in, you know that is going to be a bad/useless tutorial.

  • @leoonguyenn
    @leoonguyenn 7 месяцев назад

    when i finish solving the sudoku, it doens't show message for new game. Do you guy have the same issue?

  • @sanskarpatel3349
    @sanskarpatel3349 2 года назад

    Please anyone can tell me that which software he is using for making this Application?

    • @cruzmaistro6120
      @cruzmaistro6120 2 года назад +1

      The IDE he is using is called "IntelliJ" :)

  • @gilbertcabigasalmazan3289
    @gilbertcabigasalmazan3289 3 года назад

    How to run the suduko project in intellij?

  • @sydefx5451
    @sydefx5451 4 года назад +3

    that would be great tutorial if you don't rush so much

  • @jenilgajjar370
    @jenilgajjar370 Год назад

    can you make it flutter as well if yes then how?

  • @rionacko748
    @rionacko748 4 года назад

    But isn't JavaFX not updated anymore and a bad idea to use? Please answer me

    • @ogal
      @ogal 4 года назад

      Not widely used but still -slowly- updated

  • @saicharan5197
    @saicharan5197 Год назад

    im unable to find the javafx -sd folder can any one please help me

  • @soumeshk
    @soumeshk 4 года назад

    As of JDK 11 JAVAFX is not supported, is there any alternative to this?

    • @Levendo
      @Levendo 4 года назад

      wdym? It's working fine for me, you just have to download it separately. I'm using javafx11 with JDK 11.

    • @rionacko748
      @rionacko748 4 года назад

      @@Levendo but isn't it a bad idea to use javafx which is not updated and got discontinued almost a decade ago?

    • @Levendo
      @Levendo 4 года назад

      @@rionacko748 What?? But there's an updated version of javafx available to download even today (jfx 15). It is clearly getting updates and hasn't been discontinued. It just isn't bundled with JDK anymore.