TiLogic
TiLogic
> Any news on this? Or did anyone find a workaround for deep linking with Flutter on Linux? The [app_links](https://pub.dev/packages/app_links) package supports deep linking on Linux.
Yes, it makes it easier to differentiate by platform. e.g. ```clojure (ns app.presentation.reorderable-list-view (:require app.util.platform :as platform)) (defn android-reorderable-list-view [args] (f/widget ...)) (defn ios-reorderable-list-view [args] (f/widget ...)) (defn macos-reorderable-list-view [args]...
Currently compiles correctly. ~~However, `case` also fails in the following example:~~ ```clojure (def a 1) (defn broken [] (case a 1 "one" 2 "two" "?")) ``` ``` Compiling to Dart......
Case statements are failing in the following scenario as well... ```clojure (defn acase [month] (case month dart:core.DateTime/may "May" dart:core.DateTime/june "June" "????")) (defn acond [month] (condp = month dart:core.DateTime/may "May" dart:core.DateTime/june...
I'm seeing this issue as well... Following @dupuchba's instructions the following occurs: ### terminal 1 ```bash git clone https://github.com/Tensegritics/ClojureDart.git cd ClojureDart/samples/counter clj -M -m cljd.build init sample.counter clj -M -m...
You should be able to sign up to the Clojure slack channel via this [link](http://clojurians.net/).