react-nodegui
react-nodegui copied to clipboard
Build performant, native and cross-platform desktop applications with native React + powerful CSS like styling.🚀
I append text to the control QPlainTextEdit after interval, please help me how to scroll to the bottom, I can't find any APIs: [https://docs.nodegui.org/docs/api/generated/classes/qplaintextedit](https://docs.nodegui.org/docs/api/generated/classes/qplaintextedit) Thanks
``` export interface QLineEditSignals extends QWidgetSignals { // omit rest textChanged: (text: string) => void; } ``` I can get his value by textChanged but: ``` export interface QPlainTextEditSignals extends...
Given your `Text` component has a size, you can add `elideMode={TextElideMode.ElideRight}` to emulate similar behavior as the CSS property `text-overflow: ellipsis`, for example.
I need to use an svg (in a file) as a background. How do I do that? P.S. Spectrum is read-only now, you should move to something like Matrix/Libera.chat/Discord/Telegram/Slack.
**Describe the bug** Images fail to load when running under Windows. ``` Error: Bad URL protocol: c: at C:\Users\me\rblxRP\node_modules\centra\model\CentraRequest.js:170:15 at new Promise () at CentraRequest.send (C:\Users\me\rblxRP\node_modules\centra\model\CentraRequest.js:93:10) at Object.phin [as default]...
**Describe the bug** Console.log showing `Row "1" is out of range "-1"` when change table data **How to fix** Add code to file `RNTable.js` ``` set cellRange(range) { widget.setRowCount(range.row); widget.setColumnCount(range.column);...
**Is your feature request related to a problem? Please describe.** I am going to be making a note taking app, and instead of making it in electron, I want to...
Having the same (or similar) APIs to react native means we can share tooling. In my case, I'd like to use react-native-tailwindcss, but can't I'd like to be able to...
Is this sort of thing possible? Also if the react-nodegui side of things doesn't have a feature, can you use nodegui? How do you mix and match? Sorry I'm sort...
**Describe the bug** Having a View with a flex row layout and two children Views with different width: 'x%' fields doesn't render properly. **To Reproduce** ```javascript import React from "react";...