ClojureDart icon indicating copy to clipboard operation
ClojureDart copied to clipboard

Clojure dialect for Flutter and Dart

Results 103 ClojureDart issues
Sort by recently updated
recently updated
newest added

# Description Getting member of HashMap using keyword returns null on Flutter Web but runs ok on mobile. This problem I got when getting data from an API using GraphQL....

bug

it's difficult to debug macro logic without full exception, and this this is a new dialect so it wasn't obvious (to me at least!) that full exception wasn't being thrown...

followed the instructions "How to run a sample project" in the readme. After running ` clj -Mcljd flutter` I get a failure with exit code 65, the failure is: Cannot...

I have the following problem to run the examples, such as the fab example every time i try to execute with the command clj -M -m cljd.build flutter i get...

example: ```clj (defn webview-shortcuts-widget [.& ^m/Widget child] (f/widget :inherit [m/Shortcuts] (m/Shortcuts :child child :shortcuts (into {(m/SingleActivator services.LogicalKeyboardKey/tab) (m/DoNothingAndStopPropagationIntent) (m/SingleActivator services.LogicalKeyboardKey/tab :shift true) (m/DoNothingAndStopPropagationIntent)} (map (fn [[k v]] [k (m/DoNothingAndStopPropagationIntent)])) (.-shortcuts...

I think this is related to issue #96. Calling a variadic function that contains argument destructuring fails with the following exception: `Unhandled Exception: Invalid argument(s): Index out of bounds` Example:...

help wanted

I run the watch command from the tutorial: ``` clj -M -m cljd.build flutter ``` Platform: MacOS 11.6 Java: openjdk 17.0.1 2021-10-19 LTS Clojure CLI version: 1.11.1.1107 Then after any...

I am trying to use dart:ffi, and the examples use type annotations heavily. I tried to call a C function using dart:ffi from Clojure without type annotations, but it seems...

Reproducing the mistake: ```clojure :appBar (m/AppBar :title "this is an invalid way") ``` In the documentation, `:title` expects a Text widget. The compiler does not emitting any errors, instead, it...

enhancement

see https://clojurians.slack.com/archives/C03A6GE8D32/p1650332155679279 ```clj ;; okay (println #?(:cljd 1 :clj (Integer/parseInt "2") :default nil)) ``` ```cljd ;; KO (println #?(:clj (Integer/parseInt "2") :cljd 1 :default nil)) ``` ``` Something horrible happened!...

bug