GithubHelp home page GithubHelp logo

Desktop Support ? about sora-editor HOT 4 OPEN

wakaztahir avatar wakaztahir commented on July 24, 2024
Desktop Support ?

from sora-editor.

Comments (4)

Rosemoe avatar Rosemoe commented on July 24, 2024

Currently, major functionality implementation in sora-editor is platform-dependent:

  • rendering process uses Android specific skia API, and some Android internal graphics and text API
  • user input are delivered by Android platform API
  • user interaction logic is for touchscreen (though basic mouse support is recently added)

So we are unable to migrate sora-editor to a Kotlin Multiplatform application quickly.

However, we are planning to extract the common part of code editor and make a code editor library with Jetpack Compose to finally achieve the multiplatform goal.

from sora-editor.

wakaztahir avatar wakaztahir commented on July 24, 2024

1 - Jetpack compose uses skia for rendering actually, so you can use skia using Jetpack Compose
2 - expect functions and expect classes allow for taking input from multiple platforms, using different code
3 - Jetpack compose UI works with both (touch screen and mouse)

I want you to know that when using Kotlin Multiplatform, The platform dependent API's for example function calls can be made like

in common code

expect fun platformAdd(x : Int, y : Int) : Int

in android code

actual fun platformAdd(x : Int, y : Int) {
    // you can use android api's here with IDE support
    return x + y;
   // but note that context is not part of common code, so having a context parameter is not possible
   // by using jetpack compose, you can create composable functions, which allow you to gain context using LocalContext.current
}

in jvm code

actual fun platformAdd(x : Int, y : Int) {
    // on jvm or desktop it will minus the thing
    return x - y;
}

You can also write expect classes so it should be really easy !

from sora-editor.

wakaztahir avatar wakaztahir commented on July 24, 2024

Since you are already working with Jetpack Compose, I'll recommend that you add multiplatform support from the beginning so you don't use platform dependent API's deep in the code which will cause you to create "big refactors" later when porting to multiplatform

from sora-editor.

Rosemoe avatar Rosemoe commented on July 24, 2024

Since you are already working with Jetpack Compose

Actually, the new project haven't started yet... I'm planning to start the new project after code folding is done in sora-editor.

And thanks for your advice. The expect and actual declaration helps a lot in platform-specific logic.

from sora-editor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.