All Projects → nacular → Doodle

nacular / Doodle

Licence: mit
A pure Kotlin UI framework for the Web.

Programming Languages

javascript
184084 projects - #8 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to Doodle

Cryptii
Web app and framework offering modular conversion, encoding and encryption
Stars: ✭ 971 (+664.57%)
Mutual labels:  framework, webapp
Finalcut
A text-based widget toolkit
Stars: ✭ 244 (+92.13%)
Mutual labels:  framework, object-oriented
Typescene
Strongly typed front-end framework
Stars: ✭ 197 (+55.12%)
Mutual labels:  framework, webapp
Cppwebframework
​The C++ Web Framework (CWF) is a MVC web framework, Open Source, under MIT License, using C++ with Qt to be used in the development of web applications.
Stars: ✭ 348 (+174.02%)
Mutual labels:  framework, webapp
Kvision
Object oriented web framework for Kotlin/JS
Stars: ✭ 658 (+418.11%)
Mutual labels:  framework, object-oriented
Responsiveframework
Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple. Demo: https://gallery.codelessly.com/flutterwebsites/minimal/
Stars: ✭ 476 (+274.8%)
Mutual labels:  framework, webapp
Vuefront
VueFront Core. Turn your old-fashioned CMS website in to a SPA & PWA in 5 minutes
Stars: ✭ 316 (+148.82%)
Mutual labels:  framework, webapp
Alumna
[Alpha release of v3] Development platform for humans / Plataforma de desenvolvimento para humanos
Stars: ✭ 32 (-74.8%)
Mutual labels:  framework, webapp
Flutterwebsite
The flutter.dev website recreated in Flutter. https://gallery.codelessly.com/flutterwebsites/flutterwebsite
Stars: ✭ 76 (-40.16%)
Mutual labels:  framework, webapp
Tooty
An alternative multi-accounts Web client for Mastodon.
Stars: ✭ 124 (-2.36%)
Mutual labels:  webapp
Weapp 500px
weapp-500px
Stars: ✭ 127 (+0%)
Mutual labels:  webapp
Wxdraw
A lightweight canvas library which providing 2d draw for weapp 微信小程序2d动画库 😎 🐼
Stars: ✭ 1,625 (+1179.53%)
Mutual labels:  webapp
Active Directory Dotnet Webapp Webapi Openidconnect Aspnetcore
An ASP.NET Core web application that authenticates Azure AD users and calls a web API using OAuth 2.0 access tokens.
Stars: ✭ 124 (-2.36%)
Mutual labels:  webapp
Watsonwebserver
Watson is the fastest, easiest way to build scalable RESTful web servers and services in C#.
Stars: ✭ 125 (-1.57%)
Mutual labels:  webapp
Round Anything
A set of OpenSCAD utilities for adding radii and fillets, that embodies a robust approach to developing OpenSCAD parts.
Stars: ✭ 122 (-3.94%)
Mutual labels:  framework
Android Plugin Framework
Android插件框架,免安装运行插件APK ,支持独立插件和非独立插件
Stars: ✭ 1,630 (+1183.46%)
Mutual labels:  framework
Masonite
The Modern And Developer Centric Python Web Framework. Be sure to read the documentation and join the Slack channel questions: http://slack.masoniteproject.com
Stars: ✭ 1,681 (+1223.62%)
Mutual labels:  framework
Sun
Android-Sun-Framework 模块化开发框架
Stars: ✭ 123 (-3.15%)
Mutual labels:  framework
4minitz
4Minitz - Simply a decent free webapp for taking collaborative meeting minutes. (Keywords: Meeting Protocols, Action Items, Open Source). Check it out on our demo server:
Stars: ✭ 125 (-1.57%)
Mutual labels:  webapp
Typin
Declarative framework for interactive CLI applications
Stars: ✭ 126 (-0.79%)
Mutual labels:  framework
doodle

A pure Kotlin, UI framework for the Web

Kotlin 1.4.21 License: MIT Chat: on slack

Single-language

Doodle is written entirely in Kotlin and so are its apps. Doodle Applications do not use HTML, CSS styles or Javascript libraries. In fact, apps are not aware of the Browser (or Browser concepts) at all, and can be written entirely as common (cross-platform) code in multi-platform setups.

Expressive

Creating expressive, intuitive apps is natural with Doodle. It makes complex rendering easy with powerful, vector-oriented rendering, provides fully customizable layouts and simplifies pointer and keyboard handling.

Simply define your View hierarchy, business logic and go.

Vector Oriented

It is easy to build beautifully detailed UIs with Doodle. All rendering in Doodle is vector-oriented; so ellipses, paths, lines, gradients, affine transforms etc. are as simple to use as images and rectangles.

Precise

Doodle gives you control over all aspects of the UI presentation, including pixel-level positioning, making it easier to precisely control rendering.

Modular

Doodle has several libraries and a collection of modules. This allows selective adoption of various features and helps with bundle size. Apps written with Doodle are also dependency-injected; and there are no global objects or state to make mocking challenging.

Hello World

import io.nacular.doodle.application.Application
import io.nacular.doodle.core.Display
import io.nacular.doodle.core.plusAssign
import io.nacular.doodle.core.view
import io.nacular.doodle.drawing.Color.Companion.Black
import io.nacular.doodle.drawing.text

class HelloWorld(display: Display): Application {
    init {
        display += view {
            size   = display.size
            render = {
                text("Hello, world!", color = Black)
            }
        }
    }

    override fun shutdown() {}
}

fun main() {
    application {
        HelloWorld(display = instance())
    }
}

Documentation

Check out the documentation site for more details and examples.

Tutorials

You can find helpful tutorials as doodle-tutorials.

Feedback

Doodle is still under active development, so there are going to be gaps and bugs. Please report issues, and submit feature requests.

You can also join the discussion on the #doodle Kotlin Slack channel.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].