refactor: Reorder pubspec.yaml dependencies, update SavingsCard text to a hardcoded value, and add scripts/issues-to-create.md to .gitignore.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -43,6 +43,7 @@ lerna-debug.log*
|
|||||||
*.temp
|
*.temp
|
||||||
tmp/
|
tmp/
|
||||||
temp/
|
temp/
|
||||||
|
scripts/issues-to-create.md
|
||||||
|
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
# SECURITY (CRITICAL)
|
# SECURITY (CRITICAL)
|
||||||
|
|||||||
@@ -11,10 +11,13 @@ environment:
|
|||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
flutter_bloc: ^8.1.0
|
|
||||||
design_system:
|
# internal packages
|
||||||
path: ../design_system
|
|
||||||
equatable: ^2.0.8
|
|
||||||
flutter_modular: ^6.4.1
|
|
||||||
krow_domain:
|
krow_domain:
|
||||||
path: ../domain
|
path: ../domain
|
||||||
|
design_system:
|
||||||
|
path: ../design_system
|
||||||
|
|
||||||
|
flutter_bloc: ^8.1.0
|
||||||
|
equatable: ^2.0.8
|
||||||
|
flutter_modular: ^6.4.1
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ class SavingsCard extends StatelessWidget {
|
|||||||
const SizedBox(height: UiConstants.space1),
|
const SizedBox(height: UiConstants.space1),
|
||||||
Text(
|
Text(
|
||||||
// Using a hardcoded 180 here to match prototype mock or derived value
|
// Using a hardcoded 180 here to match prototype mock or derived value
|
||||||
t.client_billing.rate_optimization_body(amount: 180),
|
"180",
|
||||||
style: UiTypography.footnote2r.textSecondary,
|
style: UiTypography.footnote2r.textSecondary,
|
||||||
),
|
),
|
||||||
const SizedBox(height: UiConstants.space2),
|
const SizedBox(height: UiConstants.space2),
|
||||||
|
|||||||
Reference in New Issue
Block a user