Skip to content

Commit

Permalink
Change unicodes
Browse files Browse the repository at this point in the history
  • Loading branch information
yekta committed Mar 5, 2024
1 parent d417beb commit eb450c6
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 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
8 changes: 6 additions & 2 deletions lib/ui/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1694,7 +1694,7 @@ class _AppHomePageState extends State<AppHomePage>
children: [
// Currency Icon
TextSpan(
text: "\u{e80a}",
text: "\ue80a",
style: TextStyle(
fontFamily: 'AppIcons',
fontWeight: FontWeight.w400,
Expand All @@ -1713,7 +1713,11 @@ class _AppHomePageState extends State<AppHomePage>
],
),
maxLines: 1,
style: TextStyle(fontSize: 28.0),
style: TextStyle(
fontSize: 28.0,
fontWeight: FontWeight.w600,
fontFamily: "NunitoSans",
),
stepGranularity: 0.1,
minFontSize: 1,
),
Expand Down
2 changes: 1 addition & 1 deletion lib/ui/receive/share_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class _AppShareCardState extends State<AppShareCard> {
children: [
// Currency Icon
TextSpan(
text: "\u{e801}",
text: "\ue801",
style: TextStyle(
color:
StateContainer.of(context).curTheme.primary,
Expand Down

0 comments on commit eb450c6

Please sign in to comment.