0 purchases
brazil license plate drawing
BrazilLicensePlateDrawing #
A set of Flutter Widgets which draw on the screen three different types of brazilian cars' license plates:
Mercosul
Three Letters (pattern from the 1990's)
Two Letters (pattern from the 1970's)
For each plate type, there are two color themes: commercial (used by trucks, buses, taxis, etc) and particular, used by private vehicles.
Usage #
Mercosul - Particular/Private Vehicle #
const MercosulPlate(
'AVG0A33',
width: 600,
category: BrazilPlateCategory.PARTICULAR,
)
copied to clipboard
Mercosul / Commercial Vehicle #
const MercosulPlate(
'AVG0A33',
width: 600,
category: BrazilPlateCategory.COMMERCIAL,
)
copied to clipboard
Three Letters - Particular/Private Vehicle #
const ThreeLettersPlate(
'AVG0033',
width: 600,
locality: 'PR - CURITIBA',
showLocality: true,
category: BrazilPlateCategory.PARTICULAR,
)
copied to clipboard
Three Letters - Commercial Vehicle #
const ThreeLettersPlate(
'AVG0033',
width: 600,
locality: 'PR - CURITIBA',
showLocality: true,
category: BrazilPlateCategory.COMMERCIAL,
)
copied to clipboard
Two Letters - Particular/Private Vehicle #
const TwoLettersPlate(
'AV0033',
width: 600,
locality: 'RJ - RIO DE JANEIRO',
showLocality: true,
category: BrazilPlateCategory.PARTICULAR,
)
copied to clipboard
Two Letters - Commercial #
const TwoLettersPlate(
'AV0033',
width: 600,
locality: 'RJ - RIO DE JANEIRO',
showLocality: true,
category: BrazilPlateCategory.COMMERCIAL,
),
copied to clipboard
Compact Version #
Without the locality header. Available for TwoLettersPlate and ThreeLettersPlate.
const TwoLettersPlate(
'AV0033',
width: 600,
showLocality: false,
category: BrazilPlateCategory.COMMERCIAL,
),
copied to clipboard
Main Parameters #
Parameter
Description
double width
The width that the whole widget will take. If null, the width value will be inferred from the height value. If height is null, then the _defaultWidthvalue property will be considered.
double height
The height that the whole widget will take. If left null, then the original proportion factor will be used to calculate this value from the width value.
BrazilPlateCategory category
The plate's category which determines the default color set.
bool showLocality
Except for Mercosul. Whether to show or hide the locality header. Defaults to true.
String locality
Except for Mercosul. The city name and state acronym printed in locality header. Defaults to "BRASIL".
String countryText
Mercosul only. The string that represents the text which will be positioned at the top of the licence plate, generally the name of the country. Always converted to uppercase. Defaults to "BRASIL".
String countryAcronymLetters
Mercosul only. The two letters printed at the bottom left position. Always converted to uppercase. Defaults to "BR".
String countryFlagAsset
Mercosul only. The name of the image asset that will be placed in the top right corner. Considers a relative path from the root of the assets folder. Defaults to brazil.png
String mercosulLogoAsset
Mercosul only. The path of the logo asset that will be placed in the top left corner. Considers a relative path from the root of the assets folder. Defaults to merco.png
Known Limitations #
These widgets were created to support only the expected number of characters, according to each plate type. Using more than the expected number of characters can lead to unexpected behaviours, like overflows and exceptions.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.