Fyne Getting Started: Window Handling

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 พ.ย. 2024

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

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

    Simple and sweet, keep the tutorials up! I have an old python project from my bachelor's degree that ran into some concurrency issues that I am excited to port to Go sometime this year. I have my eyes on fyne :)

  • @starriet
    @starriet 2 ปีที่แล้ว

    I'm fyne, thank you.

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

    Thanks

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

      No problem! Let us know if there are any topics we should cover next.

    • @zakariachahboun
      @zakariachahboun 2 ปีที่แล้ว

      آش كدير هنا

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

      @@zakariachahboun
      نشجع الشباب على المزيد من العطاء

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

      @@baxiry. أكيد

  • @zakariachahboun
    @zakariachahboun 2 ปีที่แล้ว

    Easy thanks 🌹

    • @Fyneio
      @Fyneio  2 ปีที่แล้ว

      Welcome 😊

  • @caareystore5058
    @caareystore5058 2 ปีที่แล้ว

    Is there a way to load C++ shared library into fyne app?

    • @Fyneio
      @Fyneio  2 ปีที่แล้ว

      You can call out to C using the builtin CGo support, and from there you can access C++ calls. Referencing the .so is usually easiest if you use pkgconfig which CGo understands as well - see www.ardanlabs.com/blog/2013/08/using-cgo-with-pkg-config-and-custom.html and www.ardanlabs.com/blog/2013/08/using-c-dynamic-libraries-in-go-programs.html

  • @a4e69636b
    @a4e69636b 2 ปีที่แล้ว

    Is there a way to make Fyne look like native?

    • @Fyneio
      @Fyneio  2 ปีที่แล้ว

      You can theme Fyne apps, but this is aimed at introducing branding or app identity. Making an app look like a different system (sometimes called "skinning") is not something we support.

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

      @@Fyneio If someone were to provide the patches to give Fyne the option to make its widgets look like native Mac OS X widgets, would the Fyne team be interested in them?

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

      @@a4e69636b That is complicated because it would probably depend on how it was done. It would need to not increase complexity of the APIs and ideally not the internals either. And realistically it would need to support most common operating systems. If you are unsure if it is good to proceed we do have a proposals process which can help to discuss possible large feature additions before beginning work github.com/fyne-io/fyne/wiki/Contributing:-Proposals - and there is also the fyne-x repository for community contributions.