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
2023-03-23 17:53:42 +0600
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
742e0131ec64626e68963b99d924b29f944c7858
742e0131
1 parent
01353877
bug fixed
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
24 deletions
tex_markdown/CHANGELOG.md
tex_markdown/example/.metadata
tex_markdown/example/README.md
tex_markdown/example/lib/main.dart
tex_markdown/example/pubspec.lock
tex_markdown/pubspec.yaml
tex_markdown/CHANGELOG.md
View file @
742e013
## 0.0.6
*
Bug fixes.
## 0.0.5
*
Bug fixed.
...
...
tex_markdown/example/.metadata
View file @
742e013
...
...
@@ -4,7 +4,7 @@
# This file should be version controlled.
version:
revision:
135454af32477f815a7525073027a3ff9eff1bfd
revision:
2ad6cd72c040113b47ee9055e722606a490ef0da
channel: stable
project_type: app
...
...
@@ -13,26 +13,26 @@ project_type: app
migration:
platforms:
- platform: root
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
- platform: android
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
- platform: ios
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
- platform: linux
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
- platform: macos
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
- platform: web
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
- platform: windows
create_revision: 135454af32477f815a7525073027a3ff9eff1bfd
base_revision: 135454af32477f815a7525073027a3ff9eff1bfd
create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
# User provided section
...
...
tex_markdown/example/README.md
0 → 100644
View file @
742e013
# example
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
-
[
Lab: Write your first Flutter app
](
https://docs.flutter.dev/get-started/codelab
)
-
[
Cookbook: Useful Flutter samples
](
https://docs.flutter.dev/cookbook
)
For help getting started with Flutter development, view the
[
online documentation
](
https://docs.flutter.dev/
)
, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
...
...
tex_markdown/example/lib/main.dart
View file @
742e013
...
...
@@ -15,7 +15,7 @@ class MyApp extends StatefulWidget {
}
class
_MyAppState
extends
State
<
MyApp
>
{
ThemeMode
_themeMode
=
ThemeMode
.
light
;
ThemeMode
_themeMode
=
ThemeMode
.
system
;
@override
Widget
build
(
BuildContext
context
)
{
return
MaterialApp
(
...
...
@@ -36,7 +36,7 @@ class _MyAppState extends State<MyApp> {
title:
'Flutter Demo Home Page'
,
onPressed:
()
{
setState
(()
{
_themeMode
=
ThemeMode
.
values
[(
_themeMode
.
index
+
1
)
%
2
];
_themeMode
=
ThemeMode
.
values
[(
_themeMode
.
index
+
1
)
%
3
];
});
},
),
...
...
@@ -105,8 +105,8 @@ class _MyHomePageState extends State<MyHomePage> {
log
(
url
,
name:
"url"
);
},
style:
const
TextStyle
(
color:
Colors
.
red
,
),
// color: Colors.red,
),
);
}),
],
...
...
tex_markdown/example/pubspec.lock
View file @
742e013
...
...
@@ -238,15 +238,15 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.
5
"
version: "0.0.
6
"
tex_text:
dependency: transitive
description:
name: tex_text
sha256: "5
04723c343d3663c9b3e4cf686559e93a6453e0ab384d4e52bdea4210989d559
"
sha256: "5
62415e16b9c46816d8c2ed128fc46b299bb27bca9fac65db0c07535be0d0c60
"
url: "https://pub.dev"
source: hosted
version: "0.0.
7
"
version: "0.0.
8
"
tuple:
dependency: transitive
description:
...
...
tex_markdown/pubspec.yaml
View file @
742e013
name
:
tex_markdown
description
:
This package is used to create flutter widget that can render markdown and latex formulas. It is very simple to use and uses native flutter components.
version
:
0.0.
5
version
:
0.0.
6
homepage
:
https://github.com/saminsohag/flutter_packages/tree/main/tex_markdown
environment
:
...
...
@@ -10,7 +10,7 @@ environment:
dependencies
:
flutter
:
sdk
:
flutter
tex_text
:
^0.0.
7
tex_text
:
^0.0.
8
dev_dependencies
:
flutter_test
:
...
...
Please
register
or
login
to post a comment