saminsohag

bug fixed

## 0.0.6
* Bug fixes.
## 0.0.5
* Bug fixed.
... ...
... ... @@ -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
... ...
# 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.
... ...
... ... @@ -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,
),
);
}),
],
... ...
... ... @@ -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: "504723c343d3663c9b3e4cf686559e93a6453e0ab384d4e52bdea4210989d559"
sha256: "562415e16b9c46816d8c2ed128fc46b299bb27bca9fac65db0c07535be0d0c60"
url: "https://pub.dev"
source: hosted
version: "0.0.7"
version: "0.0.8"
tuple:
dependency: transitive
description:
... ...
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:
... ...