mirror of
https://github.com/Iconica-Development/flutter_introduction.git
synced 2025-05-18 11:33:45 +02:00
fix: design
This commit is contained in:
parent
48a4ea0e66
commit
9bb789c6da
10 changed files with 20 additions and 20 deletions
|
@ -1,3 +1,8 @@
|
|||
## 5.0.0
|
||||
|
||||
* Changed color of indicators
|
||||
* Changed default button text
|
||||
|
||||
## 4.0.0
|
||||
|
||||
* Added Buildcontext to the pages parameter.
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
name: flutter_introduction
|
||||
description: Combined Package of Flutter Introduction Widget and Flutter Introduction Service
|
||||
version: 4.0.0
|
||||
|
||||
version: 5.0.0
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
||||
environment:
|
||||
|
@ -13,10 +12,10 @@ dependencies:
|
|||
sdk: flutter
|
||||
flutter_introduction_widget:
|
||||
hosted: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
version: "^4.0.0"
|
||||
version: "^5.0.0"
|
||||
flutter_introduction_service:
|
||||
hosted: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
version: "^4.0.0"
|
||||
version: "^5.0.0"
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
name: flutter_introduction_firebase
|
||||
description: Flutter Introduction Page that uses firebase for the pages and some settings
|
||||
version: 4.0.0
|
||||
|
||||
version: 5.0.0
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
||||
environment:
|
||||
|
@ -15,10 +14,10 @@ dependencies:
|
|||
|
||||
flutter_introduction_widget:
|
||||
hosted: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
version: "^4.0.0"
|
||||
version: "^5.0.0"
|
||||
flutter_introduction_service:
|
||||
hosted: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
version: "^4.0.0"
|
||||
version: "^5.0.0"
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
name: flutter_introduction_interface
|
||||
description: A new Flutter package project.
|
||||
version: 4.0.0
|
||||
|
||||
version: 5.0.0
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
||||
environment:
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
name: flutter_introduction_service
|
||||
description: A new Flutter package project.
|
||||
version: 4.0.0
|
||||
|
||||
version: 5.0.0
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
||||
environment:
|
||||
|
@ -13,7 +12,7 @@ dependencies:
|
|||
sdk: flutter
|
||||
flutter_introduction_interface:
|
||||
hosted: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
version: "^4.0.0"
|
||||
version: "^5.0.0"
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
name: flutter_introduction_shared_preferences
|
||||
description: A new Flutter package project.
|
||||
version: 4.0.0
|
||||
|
||||
version: 5.0.0
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
||||
environment:
|
||||
|
@ -13,7 +12,7 @@ dependencies:
|
|||
sdk: flutter
|
||||
flutter_introduction_interface:
|
||||
hosted: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
version: "^4.0.0"
|
||||
version: "^5.0.0"
|
||||
shared_preferences: "^2.2.0"
|
||||
|
||||
dev_dependencies:
|
||||
|
|
|
@ -264,7 +264,7 @@ class IntroductionTranslations {
|
|||
this.skipButton = 'Skip',
|
||||
this.nextButton = 'Next',
|
||||
this.previousButton = 'Previous',
|
||||
this.finishButton = 'Get Started',
|
||||
this.finishButton = 'Get started',
|
||||
});
|
||||
final String skipButton;
|
||||
final String nextButton;
|
||||
|
|
|
@ -197,7 +197,7 @@ class DotsIndicator extends AnimatedWidget {
|
|||
color:
|
||||
(((controller.page ?? controller.initialPage).round()) == index
|
||||
? color
|
||||
: color.withAlpha(125)),
|
||||
: color.withAlpha(62)),
|
||||
type: MaterialType.circle,
|
||||
child: Container(
|
||||
decoration: const BoxDecoration(
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: flutter_introduction_widget
|
||||
description: Flutter Introduction Widget for showing a list of introduction pages on a single scrollable page or horizontal pageview
|
||||
version: 4.0.0
|
||||
version: 5.0.0
|
||||
homepage: https://github.com/Iconica-Development/flutter_introduction_widget
|
||||
|
||||
publish_to: https://forgejo.internal.iconica.nl/api/packages/internal/pub
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: flutter_introduction_workspace
|
||||
description: The use case level package using both the flutter_introduction_widget and the flutter_introduction_service combined
|
||||
version: 4.0.0
|
||||
version: 5.0.0
|
||||
|
||||
publish_to: None
|
||||
|
||||
|
|
Loading…
Reference in a new issue