Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flutter Emoji font override #84631

Open
nidegen opened this issue Jun 15, 2021 · 1 comment
Open

Flutter Emoji font override #84631

nidegen opened this issue Jun 15, 2021 · 1 comment
Labels
c: new feature Nothing broken; request for a new capability c: proposal A detailed proposal for a change to Flutter framework flutter/packages/flutter repository. See also f: labels. P3 Issues that are less important to the Flutter project team-framework Owned by Framework team triaged-framework Triaged by Framework team

Comments

@nidegen
Copy link

nidegen commented Jun 15, 2021

Use case

Flutter uses system emoji fonts. It would be nice if one could override these

Proposal

Similar to normal fonts, one could define emoji fonts in pubspec.yaml and set theme in ThemeData.

@darshankawar darshankawar added in triage Presently being triaged by the triage team framework flutter/packages/flutter repository. See also f: labels. passed first triage c: proposal A detailed proposal for a change to Flutter c: new feature Nothing broken; request for a new capability and removed in triage Presently being triaged by the triage team labels Jun 16, 2021
@goderbauer goderbauer added the P3 Issues that are less important to the Flutter project label Apr 13, 2022
@OutdatedGuy
Copy link
Contributor

+1

I'm try to add noto emoji in my app using google_fonts package, but it's messing with the text font then. So I tried some hacks like:

MaterialApp(
  theme: ThemeData(
    textTheme: GoogleFonts.poppinsTextTheme(
      GoogleFonts.notoColorEmojiTextTheme(),
    ),
  ),
);

and

MaterialApp(
  theme: ThemeData(
    textTheme: GoogleFonts.notoColorEmojiTextTheme(
      GoogleFonts.poppinsTextTheme(),
    ),
  ),
);

but here only the top most theme is applied.

Would be great to have the ability to apply font style to only emojis.

@flutter-triage-bot flutter-triage-bot bot added team-framework Owned by Framework team triaged-framework Triaged by Framework team labels Jul 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: new feature Nothing broken; request for a new capability c: proposal A detailed proposal for a change to Flutter framework flutter/packages/flutter repository. See also f: labels. P3 Issues that are less important to the Flutter project team-framework Owned by Framework team triaged-framework Triaged by Framework team
Projects
None yet
Development

No branches or pull requests

5 participants