Ville Witt

Results 3 comments of Ville Witt

v3.0: `tuist focus ` mentioned has been merged with `tuist generate `

TL;DR: `tuist init --template swiftui` bootstraps a SwiftUI version. 🤯🚀🥂 This should be mentioned in the tutorial. Longer story: Im a newbie in development for UIs in the Apple world....

Temporary, one could add ignore the format-truncation error from GCC: ```C++ snprintf(buffer, sizeof(buffer), "%s", chip); ``` into ```C++ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wformat-truncation" snprintf(buffer, sizeof(buffer), "%s",...