From 7688d81c1fa09c8f88f43cfc640b9e61d781ebae Mon Sep 17 00:00:00 2001 From: PouriaMoradi021 Date: Fri, 6 Dec 2024 14:39:15 +0330 Subject: [PATCH 1/7] chore(app): update dependencies #34 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 5a9c5f3..5c46797 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -44,7 +44,7 @@ flutter: - asset: assets/fonts/Inter-Thin.ttf weight: 100 - asset: assets/fonts/Inter-ExtraLight.ttf - weight: 100 + weight: 200 - asset: assets/fonts/Inter-Light.ttf weight: 300 - asset: assets/fonts/Inter-Regular.ttf From 1fc6e83d87f5f071736f8ee63ae63e38cd1b6604 Mon Sep 17 00:00:00 2001 From: PouriaMoradi021 Date: Fri, 6 Dec 2024 15:02:56 +0330 Subject: [PATCH 2/7] feat(app): add `inter text styles` to app #34 --- lib/src/core/constants/inter_text_styles.dart | 283 ++++++++++++++++++ 1 file changed, 283 insertions(+) create mode 100644 lib/src/core/constants/inter_text_styles.dart diff --git a/lib/src/core/constants/inter_text_styles.dart b/lib/src/core/constants/inter_text_styles.dart new file mode 100644 index 0000000..87c15f4 --- /dev/null +++ b/lib/src/core/constants/inter_text_styles.dart @@ -0,0 +1,283 @@ +import 'package:flutter/material.dart' show TextStyle, FontWeight; + +class InterTextStyles { + InterTextStyles._(); + + static const interThin = 'Inter-Thin'; + static const interExtraLight = 'Inter-ExtraLight'; + static const interLight = 'Inter-Light'; + static const interRegular = 'Inter-Regular'; + static const interMedium = 'Inter-Medium'; + static const interSemiBold = 'Inter-SemiBold'; + static const interBold = 'Inter-Bold'; + static const interExtraBold = 'Inter-ExtraBold'; + + + + // InterExtraLight Text Styles + static const TextStyle extraLight4 = TextStyle( + fontFamily: interExtraLight, + fontSize: 4, + fontWeight: FontWeight.w200, + height: 2.5, // Equivalent to 10/4 + ); + + static const TextStyle extraLight6 = TextStyle( + fontFamily: interExtraLight, + fontSize: 6, + fontWeight: FontWeight.w200, + height: 2.67, // Equivalent to 16/6 + ); + + static const TextStyle extraLight14 = TextStyle( + fontFamily: interExtraLight, + fontSize: 14, + fontWeight: FontWeight.w200, + height: 2.0, // Equivalent to 28/14 + ); + + static const TextStyle extraLight15 = TextStyle( + fontFamily: interExtraLight, + fontSize: 15, + fontWeight: FontWeight.w200, + height: 1.6, // Equivalent to 24/15 + ); + + static const TextStyle extraLight30 = TextStyle( + fontFamily: interExtraLight, + fontSize: 30, + fontWeight: FontWeight.w200, + height: 1.47, // Equivalent to 44/30 + ); + + // InterLight Text Styles + static const TextStyle light9 = TextStyle( + fontFamily: interLight, + fontSize: 9, + fontWeight: FontWeight.w300, + height: 1.67, // Equivalent to 15/9 + ); + + static const TextStyle light10 = TextStyle( + fontFamily: interLight, + fontSize: 10, + fontWeight: FontWeight.w300, + height: 2.0, // Equivalent to 20/10 + ); + + static const TextStyle light14 = TextStyle( + fontFamily: interLight, + fontSize: 14, + fontWeight: FontWeight.w300, + height: 1.43, // Equivalent to 20/14 + ); + + static const TextStyle light15 = TextStyle( + fontFamily: interLight, + fontSize: 15, + fontWeight: FontWeight.w300, + height: 1.6, // Equivalent to 24/15 + ); + + static const TextStyle light18 = TextStyle( + fontFamily: interLight, + fontSize: 18, + fontWeight: FontWeight.w300, + height: 1.33, // Equivalent to 24/18 + ); + + + // InterRegular Text Styles + static const TextStyle regular8 = TextStyle( + fontFamily: interRegular, + fontSize: 8, + fontWeight: FontWeight.w400, + height: 2.5, // Equivalent to 20/8 + ); + + static const TextStyle regular10H1 = TextStyle( + fontFamily: interRegular, + fontSize: 10, + fontWeight: FontWeight.w400, + height: 1.6, // Equivalent to 16/10 + ); + + static const TextStyle regular10H2 = TextStyle( + fontFamily: interRegular, + fontSize: 10, + fontWeight: FontWeight.w400, + height: 2.0, // Equivalent to 20/10 + ); + + static const TextStyle regular11H1 = TextStyle( + fontFamily: interRegular, + fontSize: 11, + fontWeight: FontWeight.w400, + height: 1.64, // Equivalent to 18/11 + ); + + static const TextStyle regular11H2 = TextStyle( + fontFamily: interRegular, + fontSize: 11, + fontWeight: FontWeight.w400, + height: 1.82, // Equivalent to 20/11 + ); + + static const TextStyle regular12H1 = TextStyle( + fontFamily: interRegular, + fontSize: 12, + fontWeight: FontWeight.w400, + height: 1.33, // Equivalent to 16/12 + ); + + static const TextStyle regular12H2 = TextStyle( + fontFamily: interRegular, + fontSize: 12, + fontWeight: FontWeight.w400, + height: 1.67, // Equivalent to 20/12 + ); + + static const TextStyle regular13 = TextStyle( + fontFamily: interRegular, + fontSize: 13, + fontWeight: FontWeight.w400, + height: 1.92, // Equivalent to 25/13 + ); + + static const TextStyle regular14 = TextStyle( + fontFamily: interRegular, + fontSize: 14, + fontWeight: FontWeight.w400, + height: 1.43, // Equivalent to 20/14 + ); + + // InterMedium Text Styles + static const TextStyle medium11 = TextStyle( + fontFamily: interMedium, + fontSize: 11, + fontWeight: FontWeight.w500, + height: 1.82, // Equivalent to 20/11 + ); + + static const TextStyle medium12H1 = TextStyle( + fontFamily: interMedium, + fontSize: 12, + fontWeight: FontWeight.w500, + height: 1.42, // Equivalent to 17/12 + ); + + static const TextStyle medium12H2 = TextStyle( + fontFamily: interMedium, + fontSize: 12, + fontWeight: FontWeight.w500, + height: 1.67, // Equivalent to 20/12 + ); + + static const TextStyle medium13 = TextStyle( + fontFamily: interMedium, + fontSize: 13, + fontWeight: FontWeight.w500, + height: 1.23, // Equivalent to 16/13 + ); + + static const TextStyle medium14 = TextStyle( + fontFamily: interMedium, + fontSize: 14, + fontWeight: FontWeight.w500, + height: 1.43, // Equivalent to 20/14 + ); + + // InterSemiBold Text Styles + static const TextStyle semiBold7 = TextStyle( + fontFamily: interSemiBold, + fontSize: 7, + fontWeight: FontWeight.w600, + height: 2.86, // Equivalent to 20/7 + ); + + static const TextStyle semiBold10 = TextStyle( + fontFamily: interSemiBold, + fontSize: 10, + fontWeight: FontWeight.w600, + height: 2.0, // Equivalent to 20/10 + ); + + static const TextStyle semiBold14H1 = TextStyle( + fontFamily: interSemiBold, + fontSize: 14, + fontWeight: FontWeight.w600, + height: 1.14, // Equivalent to 16/14 + ); + + static const TextStyle semiBold14H2 = TextStyle( + fontFamily: interSemiBold, + fontSize: 14, + fontWeight: FontWeight.w600, + height: 1.43, // Equivalent to 20/14 + ); + + static const TextStyle semiBold14H3 = TextStyle( + fontFamily: interSemiBold, + fontSize: 14, + fontWeight: FontWeight.w600, + height: 1.71, // Equivalent to 24/14 + ); + + static const TextStyle semiBold14H4 = TextStyle( + fontFamily: interSemiBold, + fontSize: 14, + fontWeight: FontWeight.w600, + height: 2.0, // Equivalent to 28/14 + ); + + static const TextStyle semiBold16 = TextStyle( + fontFamily: interSemiBold, + fontSize: 16, + fontWeight: FontWeight.w600, + height: 1.5, // Equivalent to 24/16 + ); + + static const TextStyle semiBold24 = TextStyle( + fontFamily: interSemiBold, + fontSize: 24, + fontWeight: FontWeight.w600, + height: 1.33, // Equivalent to 32/24 + ); + + // InterBold Text Styles + static const TextStyle bold9 = TextStyle( + fontFamily: interBold, + fontSize: 9, + fontWeight: FontWeight.w700, + height: 2.22, // Equivalent to 20/9 + ); + + static const TextStyle bold10 = TextStyle( + fontFamily: interBold, + fontSize: 10, + fontWeight: FontWeight.w700, + height: 2.0, // Equivalent to 20/10 + ); + + static const TextStyle bold12 = TextStyle( + fontFamily: interBold, + fontSize: 12, + fontWeight: FontWeight.w700, + height: 1.67, // Equivalent to 20/12 + ); + + static const TextStyle bold13 = TextStyle( + fontFamily: interBold, + fontSize: 13, + fontWeight: FontWeight.w700, + height: 1.23, // Equivalent to 16/13 + ); + + static const TextStyle bold14 = TextStyle( + fontFamily: interBold, + fontSize: 14, + fontWeight: FontWeight.w700, + height: 2.0, // Equivalent to 28/14 + ); +} + From 9484647a4095f0b129996e50cbb96e0129033afe Mon Sep 17 00:00:00 2001 From: PouriaMoradi021 Date: Fri, 6 Dec 2024 15:23:15 +0330 Subject: [PATCH 3/7] docs(app): add documents according to mark down standards #34 --- lib/src/core/constants/inter_text_styles.dart | 117 ++++++++++++++++++ 1 file changed, 117 insertions(+) diff --git a/lib/src/core/constants/inter_text_styles.dart b/lib/src/core/constants/inter_text_styles.dart index 87c15f4..8874148 100644 --- a/lib/src/core/constants/inter_text_styles.dart +++ b/lib/src/core/constants/inter_text_styles.dart @@ -1,4 +1,121 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; +/// ## [InterTextStyles] Documentation +/// +/// The `InterTextStyles` class provides a collection of predefined text styles +/// using the "Inter" font family with various weights and sizes. These styles +/// are designed to help maintain consistent typography throughout the app. +/// +/// ### Font Weights: +/// The class supports various font weights from thin to bold: +/// - **Inter-Thin** +/// - **Inter-ExtraLight** +/// - **Inter-Light** +/// - **Inter-Regular** +/// - **Inter-Medium** +/// - **Inter-SemiBold** +/// - **Inter-Bold** +/// - **Inter-ExtraBold** +/// +/// These styles are defined with different font sizes, line heights, and font weights +/// that provide flexibility in handling various UI elements such as headings, body text, +/// labels, and buttons. +/// +/// ### Class Structure: +/// The `InterTextStyles` class defines static `TextStyle` constants for each combination of +/// font family and font weight. The styles are categorized by font weight for easier use: +/// - **InterExtraLight** +/// - **InterLight** +/// - **InterRegular** +/// - **InterMedium** +/// - **InterSemiBold** +/// - **InterBold** +/// +/// Each text style defines the following properties: +/// - **fontFamily**: The font family set to the corresponding weight of "Inter". +/// - **fontSize**: The size of the text (in logical pixels). +/// - **fontWeight**: The weight of the text (e.g., `FontWeight.w300`, `FontWeight.w400`). +/// - **height**: The line height used for the text, expressed as a multiplier of the font size. +/// +/// ### Example Usage: +/// You can easily apply these text styles to `Text` widgets like so: +/// ```dart +/// Text( +/// 'Example Text', +/// style: InterTextStyles.bold14, // Apply a bold style with a font size of 14 +/// ); +/// ``` +/// +/// ### Example Breakdown of Key Styles: +/// +/// #### 1. **InterExtraLight Text Styles**: +/// - **extraLight4**: A very thin text style with a font size of 4 and a height of 2.5. +/// ```dart +/// static const TextStyle extraLight4 = TextStyle( +/// fontFamily: interExtraLight, +/// fontSize: 4, +/// fontWeight: FontWeight.w200, +/// height: 2.5, // Equivalent to 10/4 +/// ); +/// ``` +/// - **extraLight6**: A thin style with a font size of 6 and a height of 2.67. +/// ```dart +/// static const TextStyle extraLight6 = TextStyle( +/// fontFamily: interExtraLight, +/// fontSize: 6, +/// fontWeight: FontWeight.w200, +/// height: 2.67, // Equivalent to 16/6 +/// ); +/// ``` + +/// #### 2. **InterRegular Text Styles**: +/// - **regular10H1**: A regular-weight text style with a font size of 10 and a height of 1.6. +/// ```dart +/// static const TextStyle regular10H1 = TextStyle( +/// fontFamily: interRegular, +/// fontSize: 10, +/// fontWeight: FontWeight.w400, +/// height: 1.6, // Equivalent to 16/10 +/// ); +/// ``` + +/// #### 3. **InterBold Text Styles**: +/// - **bold10**: A bold text style with a font size of 10 and a height of 2.0. +/// ```dart +/// static const TextStyle bold10 = TextStyle( +/// fontFamily: interBold, +/// fontSize: 10, +/// fontWeight: FontWeight.w700, +/// height: 2.0, // Equivalent to 20/10 +/// ); +/// ``` + +/// #### 4. **InterSemiBold Text Styles**: +/// - **semiBold16**: A semi-bold text style with a font size of 16 and a height of 1.5. +/// ```dart +/// static const TextStyle semiBold16 = TextStyle( +/// fontFamily: interSemiBold, +/// fontSize: 16, +/// fontWeight: FontWeight.w600, +/// height: 1.5, // Equivalent to 24/16 +/// ); +/// ``` + +/// #### 5. **InterMedium Text Styles**: +/// - **medium14**: A medium-weight text style with a font size of 14 and a height of 1.43. +/// ```dart +/// static const TextStyle medium14 = TextStyle( +/// fontFamily: interMedium, +/// fontSize: 14, +/// fontWeight: FontWeight.w500, +/// height: 1.43, // Equivalent to 20/14 +/// ); +/// ``` + +/// ### Notes: +/// - Ensure that the "Inter" font family is included in your `pubspec.yaml` and is available in the app. +/// - These styles can be used across the app for consistency in text presentation. +/// - You can combine different font weights, sizes, and line heights as per the design requirements. + class InterTextStyles { InterTextStyles._(); From 91254fadb1ceb345e79503d5992050b0849feac0 Mon Sep 17 00:00:00 2001 From: PouriaMoradi021 Date: Fri, 6 Dec 2024 15:23:49 +0330 Subject: [PATCH 4/7] style(app): reformat codes with dart reformat command #34 --- lib/src/core/constants/inter_text_styles.dart | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/src/core/constants/inter_text_styles.dart b/lib/src/core/constants/inter_text_styles.dart index 8874148..2654a58 100644 --- a/lib/src/core/constants/inter_text_styles.dart +++ b/lib/src/core/constants/inter_text_styles.dart @@ -1,4 +1,5 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; + /// ## [InterTextStyles] Documentation /// /// The `InterTextStyles` class provides a collection of predefined text styles @@ -116,7 +117,6 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// - These styles can be used across the app for consistency in text presentation. /// - You can combine different font weights, sizes, and line heights as per the design requirements. - class InterTextStyles { InterTextStyles._(); @@ -129,8 +129,6 @@ class InterTextStyles { static const interBold = 'Inter-Bold'; static const interExtraBold = 'Inter-ExtraBold'; - - // InterExtraLight Text Styles static const TextStyle extraLight4 = TextStyle( fontFamily: interExtraLight, @@ -203,7 +201,6 @@ class InterTextStyles { height: 1.33, // Equivalent to 24/18 ); - // InterRegular Text Styles static const TextStyle regular8 = TextStyle( fontFamily: interRegular, @@ -397,4 +394,3 @@ class InterTextStyles { height: 2.0, // Equivalent to 28/14 ); } - From 07895787f122c20df4a73dbba9eec0bfa0ad07cf Mon Sep 17 00:00:00 2001 From: PouriaMoradi021 Date: Fri, 6 Dec 2024 17:12:22 +0330 Subject: [PATCH 5/7] update(app): fixing some linting & test error #34 --- lib/src/core/constants/inter_text_styles.dart | 58 ++++++++++++------- 1 file changed, 36 insertions(+), 22 deletions(-) diff --git a/lib/src/core/constants/inter_text_styles.dart b/lib/src/core/constants/inter_text_styles.dart index 2654a58..f936621 100644 --- a/lib/src/core/constants/inter_text_styles.dart +++ b/lib/src/core/constants/inter_text_styles.dart @@ -1,4 +1,4 @@ -import 'package:flutter/material.dart' show TextStyle, FontWeight; +import 'package:flutter/material.dart' show FontWeight, TextStyle; /// ## [InterTextStyles] Documentation /// @@ -17,13 +17,17 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// - **Inter-Bold** /// - **Inter-ExtraBold** /// -/// These styles are defined with different font sizes, line heights, and font weights -/// that provide flexibility in handling various UI elements such as headings, body text, +/// These styles are defined with different font sizes, +/// line heights, and font weights +/// that provide flexibility in handling various UI elements such as headings, +/// body text, /// labels, and buttons. /// /// ### Class Structure: -/// The `InterTextStyles` class defines static `TextStyle` constants for each combination of -/// font family and font weight. The styles are categorized by font weight for easier use: +/// The `InterTextStyles` class defines static `TextStyle` +/// constants for each combination of +/// font family and font weight. The styles are categorized +/// by font weight for easier use: /// - **InterExtraLight** /// - **InterLight** /// - **InterRegular** @@ -32,10 +36,13 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// - **InterBold** /// /// Each text style defines the following properties: -/// - **fontFamily**: The font family set to the corresponding weight of "Inter". +/// - **fontFamily**: The font family set to the corresponding +/// weight of "Inter". /// - **fontSize**: The size of the text (in logical pixels). -/// - **fontWeight**: The weight of the text (e.g., `FontWeight.w300`, `FontWeight.w400`). -/// - **height**: The line height used for the text, expressed as a multiplier of the font size. +/// - **fontWeight**: The weight of the text +/// (e.g., `FontWeight.w300`, `FontWeight.w400`). +/// - **height**: The line height used for the text, +/// expressed as a multiplier of the font size. /// /// ### Example Usage: /// You can easily apply these text styles to `Text` widgets like so: @@ -49,7 +56,8 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// ### Example Breakdown of Key Styles: /// /// #### 1. **InterExtraLight Text Styles**: -/// - **extraLight4**: A very thin text style with a font size of 4 and a height of 2.5. +/// - **extraLight4**: A very thin text style +/// with a font size of 4 and a height of 2.5. /// ```dart /// static const TextStyle extraLight4 = TextStyle( /// fontFamily: interExtraLight, @@ -69,7 +77,8 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// ``` /// #### 2. **InterRegular Text Styles**: -/// - **regular10H1**: A regular-weight text style with a font size of 10 and a height of 1.6. +/// - **regular10H1**: A regular-weight text style with +/// a font size of 10 and a height of 1.6. /// ```dart /// static const TextStyle regular10H1 = TextStyle( /// fontFamily: interRegular, @@ -91,7 +100,8 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// ``` /// #### 4. **InterSemiBold Text Styles**: -/// - **semiBold16**: A semi-bold text style with a font size of 16 and a height of 1.5. +/// - **semiBold16**: A semi-bold text style with +/// a font size of 16 and a height of 1.5. /// ```dart /// static const TextStyle semiBold16 = TextStyle( /// fontFamily: interSemiBold, @@ -102,7 +112,8 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// ``` /// #### 5. **InterMedium Text Styles**: -/// - **medium14**: A medium-weight text style with a font size of 14 and a height of 1.43. +/// - **medium14**: A medium-weight text style with +/// a font size of 14 and a height of 1.43. /// ```dart /// static const TextStyle medium14 = TextStyle( /// fontFamily: interMedium, @@ -113,9 +124,12 @@ import 'package:flutter/material.dart' show TextStyle, FontWeight; /// ``` /// ### Notes: -/// - Ensure that the "Inter" font family is included in your `pubspec.yaml` and is available in the app. -/// - These styles can be used across the app for consistency in text presentation. -/// - You can combine different font weights, sizes, and line heights as per the design requirements. +/// - Ensure that the "Inter" font family is included +/// in your `pubspec.yaml` and is available in the app. +/// - These styles can be used across the app for +/// consistency in text presentation. +/// - You can combine different font weights, sizes, +/// and line heights as per the design requirements. class InterTextStyles { InterTextStyles._(); @@ -148,7 +162,7 @@ class InterTextStyles { fontFamily: interExtraLight, fontSize: 14, fontWeight: FontWeight.w200, - height: 2.0, // Equivalent to 28/14 + height: 2, // Equivalent to 28/14 ); static const TextStyle extraLight15 = TextStyle( @@ -177,7 +191,7 @@ class InterTextStyles { fontFamily: interLight, fontSize: 10, fontWeight: FontWeight.w300, - height: 2.0, // Equivalent to 20/10 + height: 2, // Equivalent to 20/10 ); static const TextStyle light14 = TextStyle( @@ -220,7 +234,7 @@ class InterTextStyles { fontFamily: interRegular, fontSize: 10, fontWeight: FontWeight.w400, - height: 2.0, // Equivalent to 20/10 + height: 2, // Equivalent to 20/10 ); static const TextStyle regular11H1 = TextStyle( @@ -313,7 +327,7 @@ class InterTextStyles { fontFamily: interSemiBold, fontSize: 10, fontWeight: FontWeight.w600, - height: 2.0, // Equivalent to 20/10 + height: 2, // Equivalent to 20/10 ); static const TextStyle semiBold14H1 = TextStyle( @@ -341,7 +355,7 @@ class InterTextStyles { fontFamily: interSemiBold, fontSize: 14, fontWeight: FontWeight.w600, - height: 2.0, // Equivalent to 28/14 + height: 2, // Equivalent to 28/14 ); static const TextStyle semiBold16 = TextStyle( @@ -370,7 +384,7 @@ class InterTextStyles { fontFamily: interBold, fontSize: 10, fontWeight: FontWeight.w700, - height: 2.0, // Equivalent to 20/10 + height: 2, // Equivalent to 20/10 ); static const TextStyle bold12 = TextStyle( @@ -391,6 +405,6 @@ class InterTextStyles { fontFamily: interBold, fontSize: 14, fontWeight: FontWeight.w700, - height: 2.0, // Equivalent to 28/14 + height: 2, // Equivalent to 28/14 ); } From 0352e5e968b3d23474b75a34974bfe05ffd9c022 Mon Sep 17 00:00:00 2001 From: Esmaeil Ahmadipour Date: Fri, 13 Dec 2024 16:54:45 +0330 Subject: [PATCH 6/7] update: update `CHANGELOG.md` & `pubspec.yaml` files --- CHANGELOG.md | 13 +++++++++++++ pubspec.yaml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7d8c01..1c25ef8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 1.7.0+8 + +- Implement or replace the Easy Localization package for efficient localization management + - feat: add easy localization package to project [#40](https://github.com/pactus-project/pactus-gui/pull/40) + - feat: reformat codes with dart reformat command + - update: remove `l10n` from project + - fix: fix translation files for `applications` text in `es` & `fr` + - fix: fix configurations for `EasyLocalization` in `main.dart` file + - fix: fix `applications` text in `SplashScreen` page + - chore: update analyzer configuration to ignore generated files + - ci: update `ci` for checking assets & translation files + + # 1.6.0+7 - Implement `GoRouter` navigation system diff --git a/pubspec.yaml b/pubspec.yaml index 344d0e0..4ccc642 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: gui description: "Pactus Flutter GUI" publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 1.6.0+7 +version: 1.7.0+8 environment: sdk: ^3.5.3 From aa2023cd91674e3ba18bcea459948a9be3e37b84 Mon Sep 17 00:00:00 2001 From: Esmaeil Ahmadipour Date: Fri, 13 Dec 2024 17:05:59 +0330 Subject: [PATCH 7/7] update: update `CHANGELOG.md` & `pubspec.yaml` files --- CHANGELOG.md | 6 ++++++ pubspec.yaml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c25ef8..3e56654 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.8.0+9 + +- Implement or replace the Easy Localization package for efficient localization management + - feat(app): add inter text styles to app [#37](https://github.com/pactus-project/pactus-gui/pull/37) + - update(app): update font weight in `pubspec.yaml` + # 1.7.0+8 - Implement or replace the Easy Localization package for efficient localization management diff --git a/pubspec.yaml b/pubspec.yaml index 4ccc642..d4af836 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: gui description: "Pactus Flutter GUI" publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 1.7.0+8 +version: 1.8.0+9 environment: sdk: ^3.5.3