import 'dart:io';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
File? _image;
final picker = ImagePicker();
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ElevatedButton(
style: ElevatedButton.styleFrom(
textStyle: const TextStyle(fontSize: 40),
backgroundColor: Colors.white,
padding: const EdgeInsets.symmetric(
horizontal: 16, vertical: 16),
),
onPressed: getImageFile,
child: _powerBillEvidence == null
? const SizedBox(
height: 100,
width: 100,
child: Icon(
Icons.upload_file,
color: Colors.black,
size: 50,
))
: Image.file(_powerBillEvidence!,
height: 200),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton.icon(
onPressed: () =>
getPowerEvidence(ImageSource.camera),
icon: const Icon(Icons.camera_alt),
label: const Text("อัพโหลดหลักฐาน"),
),
],
),
],
),