Viktor

Results 31 comments of Viktor

Hello, I've just done translations into Russian.

[Borders](https://github.com/buggins/dlangui/pull/484) (without border radius yet), [box shadows](https://github.com/buggins/dlangui/pull/492), [linear gradients](https://github.com/buggins/dlangui/pull/481). They are not yet documented anywhere, maybe I'll find a time to write about it on wiki. By the way, you...

`backgroundImageId` is used similarly to CSS `background` e.g. `background: linear-gradient(-90deg, #f00, #ff0);` Styles implementation is quite spreaded. You can look at supported properties [here](https://github.com/buggins/dlangui/blob/master/src/dlangui/widgets/styles.d#L1563), entire [Style class](https://github.com/buggins/dlangui/blob/master/src/dlangui/widgets/styles.d#L312) or at some...

А ведь в релиз билде проверка границ массива не производится. @drug007, попробовал сейчас reserve, почему-то не работает, хотя в пустой тестовой программе всё нормально. Попробовал просто ```D override void resize(int...

@drug007 Дело в другом, там если уменьшить длину массива, то резерв обнулится. Сам массив один и тот же.

В таком случае вопрос к экспертам: как узнать максимальный размер экрана?

Yes, text fields certainly should be renamed. If you encounter other unintuitive names, write them here, I'll change some of them.

Ok, so I've done: ```d platform.enterMessageLoop() -> platform.runEventLoop(); TabWidget -> Tabs EditLine -> TextField // as in Flutter, MaterialUI, SwiftUI, UIKit, JavaFX... EditBox -> TextArea CanvasWidget -> Canvas ``` `Image`...

Yes, it is. Old widgets are now called "elements", and new widgets work upon them, somewhat like react components or flutter widgets. I still have to port about half of...

Because I made major API reconstructions in the past and I still need to do some more. Coming soon...