Gasim Gasimzada
Gasim Gasimzada
Hello, I have been trying to get this this working using `Begin/EndGroup` and adding Filled Rectangle using DrawList API. Because I am using filled rectangle, the Rect gets drawn on...
After playing around with this API for my use-case, I do not think adding rectangle is the way to go. I need to support two things - Adding padding around...
I am currently in the stable branch and doing this: ```cpp const ImGuiViewport *viewport = ImGui::GetMainViewport(); // Set position to the bottom of the viewport ImGui::SetNextWindowPos( ImVec2(viewport->Pos.x, viewport->Pos.y + viewport->Size.y...
I have found the issue. I will describe it here and post a reproducible demo in a bit. Here is what happens: /my-app -> Installs @myproject/my-library and mocks some of...
You can do this using `react-fontawesome`: ```jsx import { faSquare } from '@fortawesome/fontawesome-svg-solid-icons'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; ``` Since you are loading icons one at a time, this...
Yes you do but you can also use imported Icon directly into FontAwesome.
After spending a lot of time going through the CMake configuration, I found that the `CMAKE_CXX_FLAGS` flag is available. So, I pass these configs to CMake: `-DCMAKE_CXX_FLAGS=-Wno-restrict -Wno-class-memaccess`.
@wmai I am currently using a modified version of the codebase that is in the forked repo but got no response on this. If there is a necessity, I can...
What do you mean by UI example?
This is a backend implementation for GraphQL multipart specification. There separate frontend repositories for different frameworks and libraries. Here is the repo for the specification: https://github.com/jaydenseric/graphql-multipart-request-spec/blob/master/readme.md. If you check the...