saminsohag

published 0.1.14

## 0.1.14
* Cnaged `withOpacity` to `withAlpha` in `theme.dart` for highlightColor.
## 0.1.13
* `GptMarkdownTheme` and `GptMarkdownThemeData` class moved to `gpt_markdown.dart` library.
... ...
... ... @@ -126,7 +126,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.13"
version: "0.1.14"
http:
dependency: transitive
description:
... ...
... ... @@ -10,7 +10,7 @@ class GptMarkdownThemeData extends ThemeExtension<GptMarkdownThemeData> {
factory GptMarkdownThemeData.from(BuildContext context) {
return GptMarkdownThemeData(
highlightColor:
Theme.of(context).colorScheme.onSurfaceVariant.withOpacity(0.2),
Theme.of(context).colorScheme.onSurfaceVariant.withAlpha(50),
);
}
... ...
name: gpt_markdown
description: "The purpose of this package is to render the response of ChatGPT into a Flutter app."
version: 0.1.13
version: 0.1.14
homepage: https://github.com/Infinitix-LLC/gpt_markdown
environment:
... ...