saminsohag

fixed bullet color of unordered list

## 0.1.8
* unordered list bullet color fixed.
## 0.1.7
* ordered list color fixed.
... ...
... ... @@ -236,6 +236,7 @@ Markdown and LaTeX can be powerful tools for formatting text and mathematical ex
textScaler: const TextScaler.linear(1),
style: const TextStyle(
// Regular text font size here.
color: Colors.red,
fontSize: 15,
),
latexWorkaround: (tex) {
... ...
... ... @@ -190,7 +190,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.7"
version: "0.1.8"
http:
dependency: transitive
description:
... ... @@ -624,10 +624,10 @@ packages:
dependency: transitive
description:
name: vm_service
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
url: "https://pub.dev"
source: hosted
version: "14.2.4"
version: "14.2.5"
watcher:
dependency: "direct main"
description:
... ...
... ... @@ -355,9 +355,13 @@ class UnOrderedList extends BlockMd {
) {
var match = exp.firstMatch(text);
return UnorderedListView(
bulletColor: config.style?.color,
bulletColor:
config.style?.color ?? DefaultTextStyle.of(context).style.color,
padding: 10.0,
bulletSize: 3,
bulletSize: 0.2 *
(config.style?.fontSize ??
DefaultTextStyle.of(context).style.fontSize ??
kDefaultFontSize),
textDirection: config.textDirection,
child: MdWidget(
"${match?[1]}",
... ...
name: gpt_markdown
description: "The purpose of this package is to render the response of ChatGPT into a Flutter app."
version: 0.1.7
version: 0.1.8
homepage: https://github.com/saminsohag/flutter_packages/tree/main/gpt_markdown
environment:
... ...