I'm building a Flutter app and I need to connect and view live feed of our Hikvision IP camera inside our building:
I have tried these two libraries but they are very old and I couldn't get them to work:
a) flutter_hk: ^1.0.2 => it does not support 'Null Safety' so I was not able to build my application https://pub.dev/packages/flutter_hk/install
b) remote_ip_camera: ^2.0.0 => it is giving many errors since it is using old widgets like FlatButton & RaisedButton https://pub.dev/packages/remote_ip_camera/example
How this connection can be done from inside my Flutter app and show the camera feed inside a ‘Container’ widget? I have my camera IP address, port, username and password.
I have looked everywhere but couldn’t find any official documentation from Hikvision or any other IP cameras manufacturer.