David PHAM-VAN

Fix Bullet widget styling

... ... @@ -5,6 +5,7 @@
- Fix Align debug painting
- Fix GridView when empty
- Reorder MultiPage paint operations
- Fix Bullet widget styling
## 1.4.1
... ...
... ... @@ -173,14 +173,18 @@ class Bullet extends StatelessWidget {
width: bulletSize,
height: bulletSize,
margin: bulletMargin,
decoration:
BoxDecoration(color: bulletColor, shape: bulletShape),
decoration: BoxDecoration(color: bulletColor, shape: bulletShape),
),
Expanded(
child: Text(text,
child: Text(
text,
textAlign: textAlign,
style: Theme.of(context).bulletStyle))
]));
style: Theme.of(context).bulletStyle.merge(style),
),
)
],
),
);
}
}
... ...