Stefano Mondino

Results 36 comments of Stefano Mondino

@helje5 sorry didn't push the demo code to my fork ;) This is my "SheetView" https://github.com/stefanomondino/CodeEditor/blob/main/Demo/Sources/SheetView.swift I'm passing my contents as a view builder ```swift struct SheetView: View { @State...

And this is how i use it (`Editor` is an observable object holding the binding) ```swift let items = ["Test file 1", "Another test", "and yet again"].map { Editor.init($0)} SheetView(items:...

@helje5 woah! and where did that `id` came from? :D seems to work fine for the moment! Also you just teached me something really important I didn't know Maybe it's...

From a very quick debug session on my project, seems like the `source.projectedValue` in the representable is keeping somehow the old value. But from my point of view it makes...

hi @malcommac , just wanted to confirm that I'm experiencing same behavior as well. `linkAttributes` is a property of `TTTAttributedLabel`, not `UILabel`. I guess we should dig into that library...

I will surely try when I'll have some time, I was just suggesting some possible development to your library (which is really smart btw :) )

@kodakvn the point is that, in my opinion (and I may be wrong), I shouldn't be forced to wait for Moya new release to use an updated version of a...

@Alphacentaura by overriding the Button class used in the pager with something like this: ```swift class TabPagerButton: Tabman.TMBarButton { override func update(for selectionState: TMBarButton.SelectionState) { switch selectionState { case .selected:...