I recently introduced a custom class for my weather app to store all of data, now I want to save it via Hive. I run the generator and everything is fine, but when I run the app and try to call box.put(), it gives me an error saying unknown type. my class:
@HiveType(typeId: 0)
class WeatherData {
@HiveField(0)
IconData? mainIcon;
@HiveField(1)
String? countryname;
@HiveField(2)
String? temperature;
@HiveField(3)
String? tempfeelslike;
@HiveField(4)
String? humidity;
@HiveField(5)
String? windSpeed;
@HiveField(6)
String? mainWeather;
@HiveField(7)
String? weatherDescription;
@HiveField(8)
String? pressure;
@HiveField(9)
String? sunrise;
@HiveField(10)
String? sunset;
@HiveField(11)
String? lastUpdated;
@HiveField(12)
String? lastUpdatedFull;
}
My main function:
void main() async {
WidgetsFlutterBinding.ensureInitialized();
final appDocumentsDir = await getApplicationDocumentsDirectory();
String path = appDocumentsDir.path;
Hive..init(path)..registerAdapter<WeatherData>(WeatherDataAdapter());
runApp(MainApp());
}
error I'm getting: "Cannot write, unknown type: WIData. Did you forget to register an adapter?" the thing is, WIData is never declared or even mentioned, I also checked auto generated adapter but never saw WIData in any part of my project
I couldn't find anything related to my issue, but these are things I tried:
- Flutter clean
- re-generating adapter
- re-building the app
Ok, first delete the mybox.hive file or the name you used from the my documents folder to rule out problems.
then try to convert the icondata to map and save them as map not as icondata, and use a function to convert from icondata to map and vice versa. here I leave an example