Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyuvi/cljd-flutter-color-viewer
A Simple Application to view the colors built into Flutter (written in ClojureDart)
https://github.com/kyuvi/cljd-flutter-color-viewer
clojure clojuredart dart flutter
Last synced: about 2 months ago
JSON representation
A Simple Application to view the colors built into Flutter (written in ClojureDart)
- Host: GitHub
- URL: https://github.com/kyuvi/cljd-flutter-color-viewer
- Owner: Kyuvi
- License: other
- Created: 2024-02-22T21:33:47.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-04-07T19:20:04.000Z (9 months ago)
- Last Synced: 2024-10-13T10:21:08.431Z (3 months ago)
- Topics: clojure, clojuredart, dart, flutter
- Language: JavaScript
- Homepage: https://kyuvi.codeberg.page/Cljd-Flutter-Color-Viewer/@main/web-build/
- Size: 9.32 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
#+title: Flutter Color Viewer (in ClojureDart)
#+OPTIONS: \n:tA simple application to view the color constants of flutter (except transparent) and their corresponding numerical values.
* Overview
Click on a colored box/container to show the provided accents and shades of that partaicular color, or the alpha/opacity variants in the case of white or black, Clicking on one of those shows a full breakdown of all the values (red, green, blue, alpha and opacity) of that color.This app can be found online [[https://kyuvi.codeberg.page/Cljd-Flutter-Color-Viewer/@main/web-build/][here]].
* Setup
** Dependencies
- Dart (>= 3.1),
- Flutter (> 3.13),
- [[https://clojure.org][Clojure]] (>= 1.11),
- [[https://github.com/Tensegritics/ClojureDart][ClojureDart]].** Bulid instructions
From the root folder (containing this README), initialize and compile the ClojureDart code to dart from the command line.#+BEGIN_SRC sh
clj -M:cljd initclj -M:cljd compile
#+END_SRCThen build with flutter for appropriate platform (see =flutter build --help=)
i.e. to build for linux,#+BEGIN_SRC shell
flutter build linux
#+END_SRC* Motivation
Written to experiment with [[https://github.com/Tensegritics/ClojureDart][ClojueDart]] and also so I have a way to view the color constants of flutter easily.