Skip to content

Commit

Permalink
Share card tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
yekta committed Mar 5, 2024
1 parent f8f42d7 commit 4dea1c1
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
18 changes: 18 additions & 0 deletions ios/Flutter/Flutter.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# NOTE: This podspec is NOT to be published. It is only used as a local source!
# This is a generated file; do not edit or check into version control.
#

Pod::Spec.new do |s|
s.name = 'Flutter'
s.version = '1.0.0'
s.summary = 'A UI toolkit for beautiful and fast apps.'
s.homepage = 'https://flutter.dev'
s.license = { :type => 'BSD' }
s.author = { 'Flutter Dev Team' => 'flutter-dev@googlegroups.com' }
s.source = { :git => 'https://github.com/flutter/engine', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
# Framework linking is handled by Flutter tooling, not CocoaPods.
# Add a placeholder to satisfy `s.dependency 'Flutter'` plugin podspecs.
s.vendored_frameworks = 'path/to/nothing'
end
14 changes: 12 additions & 2 deletions lib/ui/receive/share_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,23 @@ class _AppShareCardState extends State<AppShareCard> {
children: [
// Currency Icon
TextSpan(
text: "\u{e801} ",
text: "\u{e801}",
style: TextStyle(
color:
StateContainer.of(context).curTheme.primary,
fontFamily: "AppIcons",
fontWeight: FontWeight.w400,
fontSize: 14.8,
fontSize: 14.6,
),
),
TextSpan(
text: " ",
style: TextStyle(
fontFamily: 'NunitoSans',
color:
StateContainer.of(context).curTheme.primary,
fontWeight: FontWeight.w600,
fontSize: 8.5,
),
),
TextSpan(
Expand Down

0 comments on commit 4dea1c1

Please sign in to comment.