Answers for "can we use camera in flutter without plugin"

0

can we use camera in flutter without plugin

// Ensure that plugin services are initialized so that `availableCameras()`
// can be called before `runApp()`
WidgetsFlutterBinding.ensureInitialized();

// Obtain a list of the available cameras on the device.
final cameras = await availableCameras();

// Get a specific camera from the list of available cameras.
final firstCamera = cameras.first;
Posted by: Guest on March-09-2022

Code answers related to "can we use camera in flutter without plugin"

Browse Popular Code Answers by Language