I am trying to use a C library in my Flutter iOS app (https://github.com/quiet/quiet)
I have compiled the library and its dependencies into separate dylibs targeting the iOS platform but have no idea how to call the functions within my Flutter app.
I read the Flutter documentation on binding to native code (https://docs.flutter.dev/platform-integration/ios/c-interop#compiled-dynamic-library) but having minimal experience in iOS native development and CMake, I still have no idea how to do it.
Apreciate if someone could provide me with a Hello World example on what I need to do.
1