Dynamic text in a wrapped widget #3144
-
How can I have a string as part of a MHz = 1.0
ms = 1.0
function ChirprateTextfield(; default=40.0, name="α", unit=:(MHz/ms))
textfield = TextField(default=string(default))
transform = input -> parse(Float64, input) / (eval(unit))
PlutoUI.Experimental.wrapped() do Child
md"$name $(Child(PlutoUI.Experimental.transformed_value(transform, textfield))) $(string(unit))"
end
end It inserts That is, as a single line, and without quotes. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
After a little experimentation, I found that inserting a single space right after I cannot explain why. 😅 It seems that |
Beta Was this translation helpful? Give feedback.
-
You can also use |
Beta Was this translation helpful? Give feedback.
-
I also recommend taking a look at HypertextLiteral.jl when making custom widgets! It gives you complete control over layout, color, etc. HTML+CSS is easier to learn than you might think :) |
Beta Was this translation helpful? Give feedback.
I also recommend taking a look at HypertextLiteral.jl when making custom widgets! It gives you complete control over layout, color, etc.
HTML+CSS is easier to learn than you might think :)