0 purchases
easy camera plus
Easy Camera #
Custom frame camera view
Support record video with camera
How to use #
if (imagePath != null)
SizedBox(
width: 400,
height: 400 * 1.48,
child: imagePath?.contains('http') == true
? Image.network(imagePath!)
: Image.asset(imagePath!),
),
TextButton.icon(
onPressed: () {
Navigator.of(context)
.push(
MaterialPageRoute(
builder: (context) => const CameraScreen(),
),
)
.then((value) {
setState(() {
imagePath = value;
});
});
},
icon: const Icon(Icons.photo_album),
label: const Text('Take Photo'),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.