Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
gpt_markdown
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
saminsohag
2024-12-18 23:38:56 +0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
caa100538005797e6d9f478a72648c8ac25f531f
caa10053
1 parent
c01b6883
published 0.1.14
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
CHANGELOG.md
example/pubspec.lock
lib/theme.dart
pubspec.yaml
CHANGELOG.md
View file @
caa1005
## 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.
...
...
example/pubspec.lock
View file @
caa1005
...
...
@@ -126,7 +126,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.1
3
"
version: "0.1.1
4
"
http:
dependency: transitive
description:
...
...
lib/theme.dart
View file @
caa1005
...
...
@@ -10,7 +10,7 @@ class GptMarkdownThemeData extends ThemeExtension<GptMarkdownThemeData> {
factory
GptMarkdownThemeData
.
from
(
BuildContext
context
)
{
return
GptMarkdownThemeData
(
highlightColor:
Theme
.
of
(
context
).
colorScheme
.
onSurfaceVariant
.
with
Opacity
(
0.2
),
Theme
.
of
(
context
).
colorScheme
.
onSurfaceVariant
.
with
Alpha
(
50
),
);
}
...
...
pubspec.yaml
View file @
caa1005
name
:
gpt_markdown
description
:
"
The
purpose
of
this
package
is
to
render
the
response
of
ChatGPT
into
a
Flutter
app."
version
:
0.1.1
3
version
:
0.1.1
4
homepage
:
https://github.com/Infinitix-LLC/gpt_markdown
environment
:
...
...
Please
register
or
login
to post a comment