Skip to content

Commit

Permalink
update .yaml & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloperKits committed Nov 15, 2024
1 parent a7f51ce commit 12684c6
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.0.1
## 1.0.0

* Initial release
* A vertical alphabetical navigation bar for quick access to sections.
* Smooth scrolling to the desired section when an alphabet is selected.
* Fully customizable list items and navigation styles.
* Lightweight and easy to integrate into any Flutter project.
* Compatible with both iOS and Android platforms.

* TODO: Describe initial release.
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.1"
version: "1.0.0"
async:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions lib/alphabet_navigation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ class AlphabetNavigation extends StatefulWidget {
final Function(BuildContext, int) itemBuilder; // Item builder for dynamic list

const AlphabetNavigation({
super.key,
Key? key,
required this.stringList,
required this.dynamicList,
this.backgroundColor = const Color(0xFF56A3A6),
this.selectedColor = const Color(0xFF014D41),
this.unselectedColor = const Color(0xFFF6FDFF),
required this.itemBuilder,
});
}) : super(key: key);

@override
_AlphabetNavigationState createState() => _AlphabetNavigationState();
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: alphabet_navigation
description: "A Flutter package that provides an alphabetically indexed list view."
version: 0.0.1
version: 1.0.0
homepage: https://github.com/DeveloperKits/alphabet_navigation

environment:
sdk: '>=3.3.1 <4.0.0'
sdk: '>=2.12.0 <4.0.0'
flutter: ">=1.17.0"

dependencies:
Expand All @@ -14,7 +14,7 @@ dependencies:
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.0
flutter_lints: ^2.0.0

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
Expand Down

0 comments on commit 12684c6

Please sign in to comment.