Turns your Figma design into .NET MAUI Graphics code

แชร์
ฝัง

ความคิดเห็น • 28

  • @damianomeneghetti6858
    @damianomeneghetti6858 ปีที่แล้ว +7

    great work Javier, I think you hit the point when you said that this tool is useful to create drawn controls.
    You are a precious resource for maui, please continue to develop these great ideas

    •  ปีที่แล้ว +4

      Oh, thanks for your kind words, you made my day.

  • @francoislepron2301
    @francoislepron2301 ปีที่แล้ว +4

    I would add that this an essential piece of the work flow for collaborating and easily create MAUI app. 👌🏼

  • @fieryscorpion
    @fieryscorpion ปีที่แล้ว +4

    That was pretty amazing! I can see it being very useful!

  • @oguzhankomcu2031
    @oguzhankomcu2031 ปีที่แล้ว +4

    I think if Maui is well developed and supported, it can come to good places in its own market, especially in mobile application development.

  • @mouradaissani8957
    @mouradaissani8957 ปีที่แล้ว +1

    great tool, thank you, just starred your github repo ;)

  • @TG0013
    @TG0013 2 หลายเดือนก่อน +2

    @javiersuarez Create an installation video please

  • @juanbatista6075
    @juanbatista6075 ปีที่แล้ว +1

    Great job. Always

  • @patrickmullen2596
    @patrickmullen2596 ปีที่แล้ว +2

    Thank you for this video, very promising 👍

    • @inter-plug
      @inter-plug ปีที่แล้ว

      WERE YOU ABLE TO USE THE TOOL

  • @markmbouma
    @markmbouma ปีที่แล้ว +2

    Great project

  • @bobweiram6321
    @bobweiram6321 ปีที่แล้ว +2

    "Say hello to my new friend..."

  • @spoxemandev4679
    @spoxemandev4679 ปีที่แล้ว +2

    This is great.

  • @mlasuzin229
    @mlasuzin229 4 หลายเดือนก่อน

    Thank you

  • @saeedfili6910
    @saeedfili6910 6 หลายเดือนก่อน +1

    Hi impressive work! I was wondering how can i install this program since I couldn't find any guide online.

  • @juanbatista6075
    @juanbatista6075 ปีที่แล้ว +2

    Siempre muy bueno lo que haces

    •  ปีที่แล้ว +1

      Muchas gracias!

  • @vovanb71
    @vovanb71 3 หลายเดือนก่อน

    Nice work. Will be useful to get sample figma file and sample MAUI project. What about XAML generation?

  • @ing.juancarlosca1700
    @ing.juancarlosca1700 ปีที่แล้ว +1

    🎉🎉🎉🎉❤❤

  • @lokeshpuri3821
    @lokeshpuri3821 10 หลายเดือนก่อน

    how to make responsive & Adaptive. Design in .net maui plz help with this.

  • @22Sn4kE22
    @22Sn4kE22 7 หลายเดือนก่อน

    It's a nice tool but currently generate a lot of erros with libraries and sdk, maybe a compiled project it's better, no the code

  • @spaikersnc
    @spaikersnc 5 หลายเดือนก่อน

    Me da bastante problemas a la hora de compilar.

  • @javitokanekanoa3986
    @javitokanekanoa3986 6 หลายเดือนก่อน

    Este video en tu español de nacimiento sería la leche

  • @thomassaddul
    @thomassaddul ปีที่แล้ว +2

    Experimental?

    •  ปีที่แล้ว +4

      It is not an official Microsoft project, it is a personal project. If Microsoft decided to do something official, it would be more than happy to share all the code, but right now what you can expect is a personal, Open Source project that will be updated occasionally in spare time.

  • @InfotroneFactory
    @InfotroneFactory 10 หลายเดือนก่อน

    How to get Token

  • @bobbobson6290
    @bobbobson6290 9 หลายเดือนก่อน

    There still seem to be some bugs. When I have a rectangle with curved corners on one side and rectangular corners on the other it mixes the corner right down up with the corner left down. Suddenly the right down corner is curved and the left down is rectangular.
    for example, it does this:
    canvas.FillRoundedRectangle(256f, 86f, 65f, 48f, 0f, 8f, 8f, 0f);
    instead of this:
    canvas.FillRoundedRectangle(256f, 86f, 65f, 48f, 0f, 8f, 0f, 8f);
    edit:
    the error for filled rectangles is in RectangleConverter, line 57 where the wrong index is used:
    builder.AppendLine(string.Format($"canvas.FillRoundedRectangle({bounds.X.ToString(nfi)}f, {bounds.Y.ToString(nfi)}f, {bounds.Width.ToString(nfi)}f, {bounds.Height.ToString(nfi)}f, {rectangleCornerRadii[0].ToString(nfi)}f, {rectangleCornerRadii[1].ToString(nfi)}f, {rectangleCornerRadii[2].ToString(nfi)}f, {rectangleCornerRadii[3].ToString(nfi)}f);"));
    2 and 3 need to be exchanged with each other:
    builder.AppendLine(string.Format($"canvas.FillRoundedRectangle({bounds.X.ToString(nfi)}f, {bounds.Y.ToString(nfi)}f, {bounds.Width.ToString(nfi)}f, {bounds.Height.ToString(nfi)}f, {rectangleCornerRadii[0].ToString(nfi)}f, {rectangleCornerRadii[1].ToString(nfi)}f, {rectangleCornerRadii[3].ToString(nfi)}f, {rectangleCornerRadii[2].ToString(nfi)}f);"));
    do the same again in line 95 for rectangles that aren't filled