Temirbek

Results 8 comments of Temirbek

i set that in `clientOptions` like this: ``` $form->field($model, 'text')->widget(CKEditor::className(), [ 'options' => ['rows' => 6], 'preset' => 'standard', 'clientOptions'=>[ 'enterMode' => 2, 'forceEnterMode'=>false, 'shiftEnterMode'=>1 ] ]) ```

I'm sorry but it seems like Yii2 is slowly dying, consider switching to Laravel or smth. I'm thinking of switching to one of this alternatives: react or vue for frontend,...

in my case it was because script doesn't know the width and height of large image(s) beforehand, so when I included images in DOM (but hidden) then it worked. This...

change protocol to tg, instead of `'https://t.me/' + this.telegramId ` do this `'tg://t.me/' + this.telegramId`

I used like this: `return GetMaterialApp.router( routeInformationParser: _router.routeInformationParser, routerDelegate: _router.routerDelegate, routeInformationProvider: _router.routeInformationProvider, ...` _router is GoRouter instance

How to edit words? I wanted to edit "Shot", "Preview" words and translate them into russian since I'm making an app for russian speaking auditory. I couldn't find those words...

In debug mode port is random on each run and storage is fresh. To make it persistent do `flutter run -d chrome --web-port 5555` as in this [answer](https://www.reddit.com/r/flutterhelp/comments/monepx/comment/gu6mq8k/?utm_source=share&utm_medium=web2x&context=3)