flutter_image_picker/lib/src/models/image_picker_theme.dart

29 lines
844 B
Dart
Raw Normal View History

2022-09-01 16:44:53 +02:00
import 'package:flutter/material.dart';
class ImagePickerTheme {
/// The [ImagePickerTheme] is used to style the [ImagePicker].
const ImagePickerTheme(
{this.title = "Upload Image",
this.titleTextSize = 20,
this.iconSize = 125,
this.iconTextSize = 15,
this.spaceBetweenIcons = 30,
this.makePhotoIcon = Icons.camera_alt_rounded,
this.makePhotoText = "Take a Picture",
this.selectImageIcon = Icons.image,
this.selectImageText = "Select File",
this.closeButtonText = "Close"});
final String title;
final double titleTextSize;
final double iconSize;
final double iconTextSize;
final double spaceBetweenIcons;
final IconData makePhotoIcon;
final String makePhotoText;
final IconData selectImageIcon;
final String selectImageText;
final String closeButtonText;
}