Saurabh Dalakoti
Saurabh Dalakoti
I have a class like following **Code sample** ```dart @HiveType(typeId: HiveConstants.APP_SETTING_INDEX) class AppSettings { AppSettings({ required this.localeString, required this.searchHistory, }); @HiveField(0) String localeString; @HiveField(1, defaultValue: ['default']) List searchHistory; } ```...
Can anyone tell how to login in the app? Which credentials to use
Hi @skydoves, I am using the library and injecting component like this the fragment with Hilt as DI framework. ` @Inject lateinit var appSettingsComponent: PreferenceComponent_AppSettingsComponent` Now I am creating corresponding...
## Adding dark theme for the lib Just added a new .html file to how preview in dark mode.
Can I add graph's topological sort in c++? Time Complexity is V+E
how to change the current location icon in map view? Is it a marker or some other parameter exists in styling options to configure it?
I want to remove existing marker, and put customer marker to it How to get all the markers from the google Maps object?? So that I can remove that marker...