-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [MDS-916] Change code snippet text font family (#324)
Co-authored-by: BirgittMajas <79840500+BirgittMajas@users.noreply.github.com>
- Loading branch information
Showing
33 changed files
with
1,020 additions
and
908 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:moon_design/moon_design.dart'; | ||
|
||
class Avatar extends StatelessWidget { | ||
const Avatar({super.key}); | ||
class Avatar extends StatelessWidget { | ||
const Avatar({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return const MoonAvatar( | ||
avatarSize: MoonAvatarSize.sm, | ||
showBadge: true, | ||
content: Text('MD'), | ||
); | ||
} | ||
@override | ||
Widget build(BuildContext context) { | ||
return const MoonAvatar( | ||
avatarSize: MoonAvatarSize.sm, | ||
showBadge: true, | ||
content: Text('MD'), | ||
); | ||
} | ||
} |
Oops, something went wrong.