Skip to content

Commit

Permalink
bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikoro committed Apr 17, 2024
1 parent f57903e commit 3706cb1
Show file tree
Hide file tree
Showing 9 changed files with 37 additions and 32 deletions.
4 changes: 3 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
include: package:flutter_lints/flutter.yaml

analyzer:
exclude: [example/**]
exclude:
- example/**
- flutter_examples/**

linter:
rules:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.1.0"
sdks:
dart: ">=2.19.6 <4.0.0"
9 changes: 4 additions & 5 deletions flutter_examples/emoji_chat_app_example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ packages:
emoji_extension:
dependency: "direct main"
description:
name: emoji_extension
sha256: "6e7a03b82a0d2871ce28e6f68ff50e5562b511adc18efa41aa10aa3bae6f2a8c"
url: "https://pub.dev"
source: hosted
version: "1.0.0"
path: "../.."
relative: true
source: path
version: "1.1.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down
3 changes: 2 additions & 1 deletion flutter_examples/emoji_chat_app_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ environment:
sdk: '>=3.3.3 <4.0.0'

dependencies:
emoji_extension: ^1.0.0
emoji_extension:
path: ../../
flutter:
sdk: flutter

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ class HomePage extends StatelessWidget {
),
body: Expanded(
child: TabBarView(
children: groups.map((g) => EmojiList(emojis: Emojis.byGroup(g))).toList(),
children:
groups.map((g) => EmojiList(emojis: Emojis.byGroup(g))).toList(),
)),
),
);
Expand Down
28 changes: 13 additions & 15 deletions flutter_examples/emoji_overview_app_example/lib/text_row.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,19 @@ class TextRow extends StatelessWidget {

@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
return Row(
children: [
SizedBox(
width: constraints.maxWidth / 2,
child: Text(
'$title:',
style: const TextStyle(fontWeight: FontWeight.bold),
),
return LayoutBuilder(builder: (context, constraints) {
return Row(
children: [
SizedBox(
width: constraints.maxWidth / 2,
child: Text(
'$title:',
style: const TextStyle(fontWeight: FontWeight.bold),
),
Flexible(child: Text('$value'))
],
);
}
);
),
Flexible(child: Text('$value'))
],
);
});
}
}
9 changes: 4 additions & 5 deletions flutter_examples/emoji_overview_app_example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ packages:
emoji_extension:
dependency: "direct main"
description:
name: emoji_extension
sha256: "6e7a03b82a0d2871ce28e6f68ff50e5562b511adc18efa41aa10aa3bae6f2a8c"
url: "https://pub.dev"
source: hosted
version: "1.0.0"
path: "../.."
relative: true
source: path
version: "1.1.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down
3 changes: 2 additions & 1 deletion flutter_examples/emoji_overview_app_example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ environment:
sdk: '>=3.3.3 <4.0.0'

dependencies:
emoji_extension: ^1.0.0
emoji_extension:
path: ../../
flutter:
sdk: flutter

Expand Down
8 changes: 6 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: emoji_extension
description: Emojis for Flutter & Dart (Unicode 15.1) + one, yet powerful emojis String extension
version: 1.0.0
version: 1.1.0
repository: https://github.com/Nikoro/emoji_extension
issue_tracker: https://github.com/Nikoro/emoji_extension/issues
topics: [emoji, emojis, collection, unicode]
Expand All @@ -17,4 +17,8 @@ dev_dependencies:

screenshots:
- description: The emoji extension logo
path: images/logo.webp
path: images/logo.webp
- description: Emoji Overview App demo
path: flutter_examples/emoji_overview_app_example/demo.gif
- description: Emoji Chat App demo
path: flutter_examples/emoji_chat_app_example/demo.gif

0 comments on commit 3706cb1

Please sign in to comment.