saminsohag

bug fixed

  1 +## 0.0.6
  2 +
  3 +* Bug fixes.
  4 +
1 ## 0.0.5 5 ## 0.0.5
2 6
3 * Bug fixed. 7 * Bug fixed.
@@ -4,7 +4,7 @@ @@ -4,7 +4,7 @@
4 # This file should be version controlled. 4 # This file should be version controlled.
5 5
6 version: 6 version:
7 - revision: 135454af32477f815a7525073027a3ff9eff1bfd 7 + revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
8 channel: stable 8 channel: stable
9 9
10 project_type: app 10 project_type: app
@@ -13,26 +13,26 @@ project_type: app @@ -13,26 +13,26 @@ project_type: app
13 migration: 13 migration:
14 platforms: 14 platforms:
15 - platform: root 15 - platform: root
16 - create_revision: 135454af32477f815a7525073027a3ff9eff1bfd  
17 - base_revision: 135454af32477f815a7525073027a3ff9eff1bfd 16 + create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
  17 + base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
18 - platform: android 18 - platform: android
19 - create_revision: 135454af32477f815a7525073027a3ff9eff1bfd  
20 - base_revision: 135454af32477f815a7525073027a3ff9eff1bfd 19 + create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
  20 + base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
21 - platform: ios 21 - platform: ios
22 - create_revision: 135454af32477f815a7525073027a3ff9eff1bfd  
23 - base_revision: 135454af32477f815a7525073027a3ff9eff1bfd 22 + create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
  23 + base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
24 - platform: linux 24 - platform: linux
25 - create_revision: 135454af32477f815a7525073027a3ff9eff1bfd  
26 - base_revision: 135454af32477f815a7525073027a3ff9eff1bfd 25 + create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
  26 + base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
27 - platform: macos 27 - platform: macos
28 - create_revision: 135454af32477f815a7525073027a3ff9eff1bfd  
29 - base_revision: 135454af32477f815a7525073027a3ff9eff1bfd 28 + create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
  29 + base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
30 - platform: web 30 - platform: web
31 - create_revision: 135454af32477f815a7525073027a3ff9eff1bfd  
32 - base_revision: 135454af32477f815a7525073027a3ff9eff1bfd 31 + create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
  32 + base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
33 - platform: windows 33 - platform: windows
34 - create_revision: 135454af32477f815a7525073027a3ff9eff1bfd  
35 - base_revision: 135454af32477f815a7525073027a3ff9eff1bfd 34 + create_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
  35 + base_revision: 2ad6cd72c040113b47ee9055e722606a490ef0da
36 36
37 # User provided section 37 # User provided section
38 38
  1 +# example
  2 +
  3 +A new Flutter project.
  4 +
  5 +## Getting Started
  6 +
  7 +This project is a starting point for a Flutter application.
  8 +
  9 +A few resources to get you started if this is your first Flutter project:
  10 +
  11 +- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
  12 +- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
  13 +
  14 +For help getting started with Flutter development, view the
  15 +[online documentation](https://docs.flutter.dev/), which offers tutorials,
  16 +samples, guidance on mobile development, and a full API reference.
@@ -15,7 +15,7 @@ class MyApp extends StatefulWidget { @@ -15,7 +15,7 @@ class MyApp extends StatefulWidget {
15 } 15 }
16 16
17 class _MyAppState extends State<MyApp> { 17 class _MyAppState extends State<MyApp> {
18 - ThemeMode _themeMode = ThemeMode.light; 18 + ThemeMode _themeMode = ThemeMode.system;
19 @override 19 @override
20 Widget build(BuildContext context) { 20 Widget build(BuildContext context) {
21 return MaterialApp( 21 return MaterialApp(
@@ -36,7 +36,7 @@ class _MyAppState extends State<MyApp> { @@ -36,7 +36,7 @@ class _MyAppState extends State<MyApp> {
36 title: 'Flutter Demo Home Page', 36 title: 'Flutter Demo Home Page',
37 onPressed: () { 37 onPressed: () {
38 setState(() { 38 setState(() {
39 - _themeMode = ThemeMode.values[(_themeMode.index + 1) % 2]; 39 + _themeMode = ThemeMode.values[(_themeMode.index + 1) % 3];
40 }); 40 });
41 }, 41 },
42 ), 42 ),
@@ -105,7 +105,7 @@ class _MyHomePageState extends State<MyHomePage> { @@ -105,7 +105,7 @@ class _MyHomePageState extends State<MyHomePage> {
105 log(url, name: "url"); 105 log(url, name: "url");
106 }, 106 },
107 style: const TextStyle( 107 style: const TextStyle(
108 - color: Colors.red, 108 + // color: Colors.red,
109 ), 109 ),
110 ); 110 );
111 }), 111 }),
@@ -238,15 +238,15 @@ packages: @@ -238,15 +238,15 @@ packages:
238 path: ".." 238 path: ".."
239 relative: true 239 relative: true
240 source: path 240 source: path
241 - version: "0.0.5" 241 + version: "0.0.6"
242 tex_text: 242 tex_text:
243 dependency: transitive 243 dependency: transitive
244 description: 244 description:
245 name: tex_text 245 name: tex_text
246 - sha256: "504723c343d3663c9b3e4cf686559e93a6453e0ab384d4e52bdea4210989d559" 246 + sha256: "562415e16b9c46816d8c2ed128fc46b299bb27bca9fac65db0c07535be0d0c60"
247 url: "https://pub.dev" 247 url: "https://pub.dev"
248 source: hosted 248 source: hosted
249 - version: "0.0.7" 249 + version: "0.0.8"
250 tuple: 250 tuple:
251 dependency: transitive 251 dependency: transitive
252 description: 252 description:
1 name: tex_markdown 1 name: tex_markdown
2 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. 2 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.
3 -version: 0.0.5 3 +version: 0.0.6
4 homepage: https://github.com/saminsohag/flutter_packages/tree/main/tex_markdown 4 homepage: https://github.com/saminsohag/flutter_packages/tree/main/tex_markdown
5 5
6 environment: 6 environment:
@@ -10,7 +10,7 @@ environment: @@ -10,7 +10,7 @@ environment:
10 dependencies: 10 dependencies:
11 flutter: 11 flutter:
12 sdk: flutter 12 sdk: flutter
13 - tex_text: ^0.0.7 13 + tex_text: ^0.0.8
14 14
15 dev_dependencies: 15 dev_dependencies:
16 flutter_test: 16 flutter_test: