diff --git a/ios/Flutter/Flutter.podspec b/ios/Flutter/Flutter.podspec deleted file mode 100644 index 8ce4394..0000000 --- a/ios/Flutter/Flutter.podspec +++ /dev/null @@ -1,18 +0,0 @@ -# -# 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 diff --git a/lib/ui/receive/share_card.dart b/lib/ui/receive/share_card.dart index bd51089..4256084 100644 --- a/lib/ui/receive/share_card.dart +++ b/lib/ui/receive/share_card.dart @@ -88,7 +88,7 @@ class _AppShareCardState extends State { children: [ // Currency Icon TextSpan( - text: "\ue801", + text: "\u{e801} ", style: TextStyle( color: StateContainer.of(context).curTheme.primary, @@ -118,6 +118,12 @@ class _AppShareCardState extends State { ), ), ], + style: TextStyle( + fontFamily: 'NeueHansKendrick', + color: StateContainer.of(context).curTheme.primary, + fontWeight: FontWeight.w500, + fontSize: 14.8, + ), ), ), ),