()
| 177 | } |
| 178 | |
| 179 | renderContent(){ |
| 180 | // console.log("bounding rect: ", this.getBoundingRect()) |
| 181 | |
| 182 | // console.log("widget styling: ", this.state.widgetInnerStyling) |
| 183 | return ( |
| 184 | <div className="tw-w-flex tw-flex-col tw-w-full tw-h-full tw-relative tw-rounded-md tw-overflow-hidden"> |
| 185 | <div className="tw-p-2 tw-w-full tw-h-full tw-content-start" |
| 186 | ref={this.styleAreaRef} |
| 187 | style={this.getInnerRenderStyling()}> |
| 188 | {this.renderTkinterLayout()} {/*This is required for pack layouts, so if your widget accepts child widgets, ensure to add this */} |
| 189 | </div> |
| 190 | </div> |
| 191 | ) |
| 192 | } |
| 193 | |
| 194 | } |
| 195 |
nothing calls this directly
no outgoing calls
no test coverage detected