Skip to content

Commit 68c9abe

Browse files
committed
update changes
1 parent 550f634 commit 68c9abe

File tree

88 files changed

+6548
-6551
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+6548
-6551
lines changed

.github/workflows/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: nixrajput

.github/workflows/web.yaml

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
name: Publish to GitHub Pages
2-
3-
on:
4-
push:
5-
branches: [master]
6-
7-
jobs:
8-
build:
9-
runs-on: ubuntu-latest
10-
11-
steps:
12-
- uses: actions/checkout@v2
13-
- uses: subosito/flutter-action@v1
14-
with:
15-
channel: beta
16-
- run: flutter config --enable-web
17-
- run: flutter pub get
18-
- uses: bluefireteam/flutter-gh-pages@v7
19-
with:
20-
workingDir: example
21-
baseHref: /flutter_carousel_widget/
1+
name: Publish to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [master]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: subosito/flutter-action@v1
14+
with:
15+
channel: beta
16+
- run: flutter config --enable-web
17+
- run: flutter pub get
18+
- uses: bluefireteam/flutter-gh-pages@v7
19+
with:
20+
workingDir: example
21+
baseHref: /flutter_carousel_widget/

.gitignore

+29-29
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
# Miscellaneous
2-
*.class
3-
*.log
4-
*.pyc
5-
*.swp
6-
.DS_Store
7-
.atom/
8-
.buildlog/
9-
.history
10-
.svn/
11-
12-
# IntelliJ related
13-
*.iml
14-
*.ipr
15-
*.iws
16-
.idea/
17-
18-
# The .vscode folder contains launch configuration and tasks you configure in
19-
# VS Code which you may wish to be included in version control, so this line
20-
# is commented out by default.
21-
#.vscode/
22-
23-
# Flutter/Dart/Pub related
24-
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
25-
pubspec.lock
26-
**/doc/api/
27-
.dart_tool/
28-
.packages
29-
build/
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
25+
pubspec.lock
26+
**/doc/api/
27+
.dart_tool/
28+
.packages
29+
build/

.metadata

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# This file tracks properties of this Flutter project.
2-
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3-
#
4-
# This file should be version controlled and should not be manually edited.
5-
6-
version:
7-
revision: 5f105a6ca7a5ac7b8bc9b241f4c2d86f4188cf5c
8-
channel: stable
9-
10-
project_type: package
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 5f105a6ca7a5ac7b8bc9b241f4c2d86f4188cf5c
8+
channel: stable
9+
10+
project_type: package

CHANGELOG.md

+130-125
Original file line numberDiff line numberDiff line change
@@ -1,125 +1,130 @@
1-
# Changelog
2-
3-
## 2.0.0+1
4-
5-
* **Fix**: Enums are now exported.
6-
* **New Feature**: `ExpandableCarousel` widget added.
7-
* **Breaking Change**: `scrollPhysics` is now `physics` in `CarouselOptions`.
8-
* **Breaking Change**: `carouselController` is now `controller` in `CarouselOptions`.
9-
* **Breaking Change**: Project architecture changed.
10-
* **Fix**: All known bug fixed and removed.
11-
* **Improvement**: Performance improvements.
12-
* **Optimization**: Removed unnecessary codes.
13-
14-
## 2.0.0
15-
16-
* **New Feature**: `ExpandableCarousel` widget added.
17-
* **Breaking Change**: `scrollPhysics` is now `physics` in `CarouselOptions`.
18-
* **Breaking Change**: `carouselController` is now `controller` in `CarouselOptions`.
19-
* **Breaking Change**: Project architecture changed.
20-
* **Fix**: All known bug fixed and removed.
21-
* **Improvement**: Performance improvements.
22-
* **Optimization**: Removed unnecessary codes.
23-
24-
## 1.2.3
25-
26-
* **Fix**: bug auto play carousel is not working.
27-
* All known bug fixed and removed.
28-
* Performance improvements.
29-
* Removed unnecessary codes.
30-
31-
## 1.2.2
32-
33-
* **Fix**: `issue #7` bug show indicator when no custom `CarouselController` is set and `showIndicator` is set to `true` and `onPageChanged` is called.
34-
* Custom `CarouselController` can be set via `CarouselOptions` property.
35-
* All known bugs are fixed.
36-
* Performance improvements.
37-
38-
## 1.2.1
39-
40-
* Github Actions: Web Demo is now deployed to Github Pages
41-
* Documentation: Updated the documentation to reflect the new Github Pages deployment
42-
43-
## 1.2.0
44-
45-
* Project structure changed.
46-
* Minor bug fixes.
47-
* Removed unnecessary codes.
48-
49-
## 1.1.0
50-
51-
* Minor bug fixes.
52-
* Performance improvements.
53-
54-
## 1.0.5
55-
56-
* Minor bug fixes.
57-
* Performance improvements.
58-
59-
## 1.0.4
60-
61-
* Minor bug fixes.
62-
* Performance improvements.
63-
64-
## 1.0.3
65-
66-
* Minor bug fixes.
67-
* Performance improvements.
68-
69-
## 1.0.2
70-
71-
* Option to float Slide Indicator over Carousel or to show below Carousel added.
72-
* Screenshots updated.
73-
* Source code optimised.
74-
* Performance improvements.
75-
76-
## 1.0.1
77-
78-
* Web app example demo added.
79-
* Indicator color will change according to System theme.
80-
* Screenshots updated.
81-
* Documentation updated.
82-
* Source code optimised.
83-
* Performance improvements.
84-
85-
## 1.0.0
86-
87-
* Source code optimised.
88-
* Bug fixes.
89-
* Performance improvements.
90-
* Documentation updated.
91-
92-
## 0.1.5
93-
94-
* Default Slide Indicator added.
95-
* Bug fixes.
96-
* Performance improvements.
97-
98-
## 0.1.4
99-
100-
* Bug fixes.
101-
* Documentation updated.
102-
103-
## 0.1.3
104-
105-
* Minor bug fixes.
106-
107-
## 0.1.2
108-
109-
* Auto-sized child support.
110-
* Bug fixes.
111-
112-
## 0.1.1
113-
114-
* Bug fixes.
115-
* Documentation updated.
116-
117-
## 0.1.0
118-
119-
* Pre-built Carousel indicator support added.
120-
* Bug fixes.
121-
* Documentation updated.
122-
123-
## 0.0.1
124-
125-
* Initial Version.
1+
# Changelog
2+
3+
## 2.0.1
4+
5+
* **Documentation**: Updated the documentation to reflect the new Github Pages deployment
6+
* **Fix**: All known bug fixed and removed.
7+
8+
## 2.0.0+1
9+
10+
* **Fix**: Enums are now exported.
11+
* **New Feature**: `ExpandableCarousel` widget added.
12+
* **Breaking Change**: `scrollPhysics` is now `physics` in `CarouselOptions`.
13+
* **Breaking Change**: `carouselController` is now `controller` in `CarouselOptions`.
14+
* **Breaking Change**: Project architecture changed.
15+
* **Fix**: All known bug fixed and removed.
16+
* **Improvement**: Performance improvements.
17+
* **Optimization**: Removed unnecessary codes.
18+
19+
## 2.0.0
20+
21+
* **New Feature**: `ExpandableCarousel` widget added.
22+
* **Breaking Change**: `scrollPhysics` is now `physics` in `CarouselOptions`.
23+
* **Breaking Change**: `carouselController` is now `controller` in `CarouselOptions`.
24+
* **Breaking Change**: Project architecture changed.
25+
* **Fix**: All known bug fixed and removed.
26+
* **Improvement**: Performance improvements.
27+
* **Optimization**: Removed unnecessary codes.
28+
29+
## 1.2.3
30+
31+
* **Fix**: bug auto play carousel is not working.
32+
* All known bug fixed and removed.
33+
* Performance improvements.
34+
* Removed unnecessary codes.
35+
36+
## 1.2.2
37+
38+
* **Fix**: `issue #7` bug show indicator when no custom `CarouselController` is set and `showIndicator` is set to `true` and `onPageChanged` is called.
39+
* Custom `CarouselController` can be set via `CarouselOptions` property.
40+
* All known bugs are fixed.
41+
* Performance improvements.
42+
43+
## 1.2.1
44+
45+
* Github Actions: Web Demo is now deployed to Github Pages
46+
* Documentation: Updated the documentation to reflect the new Github Pages deployment
47+
48+
## 1.2.0
49+
50+
* Project structure changed.
51+
* Minor bug fixes.
52+
* Removed unnecessary codes.
53+
54+
## 1.1.0
55+
56+
* Minor bug fixes.
57+
* Performance improvements.
58+
59+
## 1.0.5
60+
61+
* Minor bug fixes.
62+
* Performance improvements.
63+
64+
## 1.0.4
65+
66+
* Minor bug fixes.
67+
* Performance improvements.
68+
69+
## 1.0.3
70+
71+
* Minor bug fixes.
72+
* Performance improvements.
73+
74+
## 1.0.2
75+
76+
* Option to float Slide Indicator over Carousel or to show below Carousel added.
77+
* Screenshots updated.
78+
* Source code optimised.
79+
* Performance improvements.
80+
81+
## 1.0.1
82+
83+
* Web app example demo added.
84+
* Indicator color will change according to System theme.
85+
* Screenshots updated.
86+
* Documentation updated.
87+
* Source code optimised.
88+
* Performance improvements.
89+
90+
## 1.0.0
91+
92+
* Source code optimised.
93+
* Bug fixes.
94+
* Performance improvements.
95+
* Documentation updated.
96+
97+
## 0.1.5
98+
99+
* Default Slide Indicator added.
100+
* Bug fixes.
101+
* Performance improvements.
102+
103+
## 0.1.4
104+
105+
* Bug fixes.
106+
* Documentation updated.
107+
108+
## 0.1.3
109+
110+
* Minor bug fixes.
111+
112+
## 0.1.2
113+
114+
* Auto-sized child support.
115+
* Bug fixes.
116+
117+
## 0.1.1
118+
119+
* Bug fixes.
120+
* Documentation updated.
121+
122+
## 0.1.0
123+
124+
* Pre-built Carousel indicator support added.
125+
* Bug fixes.
126+
* Documentation updated.
127+
128+
## 0.0.1
129+
130+
* Initial Version.

0 commit comments

Comments
 (0)