Code Monkey home page Code Monkey logo

kotlinmultiplatformmobiledemo's Introduction

Experiment with Kotlin Multiplatform Mobile

iOS setup

git clone [email protected]:touchlab/xcode-kotlin.git
xd xcode-kotlin
./setup-xcode11.sh
sudo ./colorsetup-xcode11.sh

Project architecture

  • KMM project, with
    • iOS app
    • Android app
    • Shared library

Code architecture

Sort of "Clean Architecture"

3 main layers: Presentation, Domain, and Data

Presentation (or UI) layer

It’s the layer that interacts with the UI. Very platform dependent.

It manage the state of the UI.

Examples of classes:

  • iOS: ViewController, View, any UIControl, ViewModel
  • Android: Activity, Fragment, Presenter, ViewModel

Pattern: MVVM, MVP or MVC?

Domain layer

Also known as business logic. This layer has the rules of our business.

It might manage some state, even persist it.

Examples of classes:

  • data models
  • managers
  • repository

Data layer

In this layer, you have definitions of the different data sources.

It basically encapsulates the interaction with the underlying platform (iOS or Android) or services/libraries (networking library, database, Firebase, etc), so that the rest of the code can be agnostic and reusable.

Examples of classes:

  • HTTP client
  • database

Useful Links

Documentation and blogposts

Dependencies

Other projects

Things to know

Calling Kotlin suspend functions from Swift/Objective-C is currently supported only on main thread

kotlinmultiplatformmobiledemo's People

Contributors

dral3x avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

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.