Skip to content

Commit

Permalink
fix: Example configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Adaendra committed Jun 30, 2024
1 parent 495a22e commit 461ce87
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Unreleased

### Fixed
- Example configurations

## [0.1.0] -30/06/2024
### Added
Expand Down
3 changes: 1 addition & 2 deletions example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,11 @@
/build/

# Web related
lib/generated_plugin_registrant.dart

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

.vscode/
.vscode/
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Fluttermoji Demo',
title: 'Avatar Maker Demo',
debugShowCheckedModeBanner: false,
theme: ThemeData.light(),
// darkTheme: ThemeData.dark(),
Expand Down Expand Up @@ -45,7 +45,7 @@ class _MyHomePageState extends State<MyHomePage> {
Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
"Use your Fluttermoji anywhere\nwith the below widget",
"Use your Avatar Maker anywhere\nwith the below widget",
style: TextStyle(fontWeight: FontWeight.w600, fontSize: 20),
textAlign: TextAlign.center,
),
Expand Down
6 changes: 3 additions & 3 deletions example/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@

<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="Demo for the fluttermoji package">
<meta name="description" content="Demo for the avatar_maker package">

<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Fluttermoji demo">
<meta name="apple-mobile-web-app-title" content="Avatar Maker demo">

<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
Expand All @@ -41,7 +41,7 @@
<link rel="manifest" href="icons/manifest.json">
<meta name="msapplication-TileColor" content="#6200EA">
<meta name="msapplication-TileImage" content="icons/ms-icon-144x144.png">
<title>Fluttermoji | Demo</title>
<title>Avatar Maker | Demo</title>

</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions example/windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ BEGIN
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "com.suraj.fluttermoji" "\0"
VALUE "CompanyName", "com.roadtripmoustache.avatarmaker" "\0"
VALUE "FileDescription", "example" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "example" "\0"
VALUE "LegalCopyright", "Copyright (C) 2022 com.suraj.fluttermoji. All rights reserved." "\0"
VALUE "LegalCopyright", "Copyright (C) 2024 com.roadtripmoustache.avatarmaker. All rights reserved." "\0"
VALUE "OriginalFilename", "example.exe" "\0"
VALUE "ProductName", "example" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
Expand Down

0 comments on commit 461ce87

Please sign in to comment.