Add more tools to the drawing toolbar
This commit is contained in:
@@ -57,7 +57,7 @@ class PaintPreset {
|
|||||||
static const yellowMarker = PaintPreset(
|
static const yellowMarker = PaintPreset(
|
||||||
name: 'Yellow Marker',
|
name: 'Yellow Marker',
|
||||||
color: Color(0x80FFEB3B), // Yellow with 50% opacity
|
color: Color(0x80FFEB3B), // Yellow with 50% opacity
|
||||||
strokeWidth: 0.015, // Thicker for highlighting
|
strokeWidth: 0.02, // Thicker for highlighting
|
||||||
icon: Icons.highlight,
|
icon: Icons.highlight,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ class PaintPreset {
|
|||||||
static const greenMarker = PaintPreset(
|
static const greenMarker = PaintPreset(
|
||||||
name: 'Green Marker',
|
name: 'Green Marker',
|
||||||
color: Color(0x804CAF50), // Green with 50% opacity
|
color: Color(0x804CAF50), // Green with 50% opacity
|
||||||
strokeWidth: 0.015,
|
strokeWidth: 0.018,
|
||||||
icon: Icons.highlight,
|
icon: Icons.highlight,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -91,7 +91,10 @@ class PaintPreset {
|
|||||||
static const List<PaintPreset> quickAccess = [
|
static const List<PaintPreset> quickAccess = [
|
||||||
blackPen,
|
blackPen,
|
||||||
redPen,
|
redPen,
|
||||||
|
bluePen,
|
||||||
yellowMarker,
|
yellowMarker,
|
||||||
|
greenMarker,
|
||||||
|
pinkMarker,
|
||||||
];
|
];
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
Reference in New Issue
Block a user