From thepreviouspost, I have shared how to setup your web server to implement RESTful api using Aqueduct with Postgresql. In this post, we are going to start building our flutter app to interact with our web application. How to set up Flutter project Create a new Flutter project call flutte...
The “theme” property is used to provide the light theme for the app, while the “darkTheme” property is used to provide the dark theme for the app. The “themeMode” property is an enum to select which of the themes to use for the app. 1 2 3 4 5 6 7 8 9 10 11 enum Them...
Modify the MediaTypeInfo and CaptureDeviceInfo structures to use appropriate string types: struct CAMERA_API MediaTypeInfo { uint32_t width; uint32_t height; #ifdef _WIN32 wchar_t subtypeName[512]; #else char subtypeName[512]; #endif }; struct CAMERA_API CaptureDeviceInfo { #ifdef _WIN...
Learn more
Add a Java library for accessing document scanners using Dynamsoft Service’s REST APIs. The library was built in aprevious Java document scanner blog. dependencies{implementation'com.github.tony-xlh:docscan4j:v2.0.0'} Add Permissions Add permissions to access the camera, the internet and the st...
Today I will show you how to create a super-duper engine for Server-Driven UI in Flutter, which is an integral part of a super-duper CMS (that's how its creator, that is, I, position it). You, of course, may have a different opinion, and I will be happy to discuss it in the...
How to Use the Coordinator Pattern in SwiftUI Navigation and Deep-Links in SwiftUIBy the way, if you still can’t get enough of Wordle: Our developer Marvin has also developed a German version of the Wordle game in Flutter and it’s available online! Feel free to try it out and play ...
Learn more The largest and most up-to-date collection of courses and books on iOS, Swift, Android, Kotlin, Flutter, Dart, Server-Side Swift, Unity, and more! © 2025 Kodeco Inc Kodeco and our partners use cookies to understand how you use our site and to serve you personalized co...
How to run a Flutter app with arguments in VS Code with launch configuration Learn what launch configuration is and how to use it. Next How to add Lint rules in Flutter As your team and project grow, you might need to enforce some coding rules to make your code go the same direc...
It gets the camera frames and use Dynamsoft Barcode Reader to read barcodes from them. class BarcodeAnalyzer( private val onScanned: (String) -> Unit, private val context: Context, ) : ImageAnalysis.Analyzer { private val router = CaptureVisionRouter(context) //used to call Dynamsoft Barcode...