├── analysis_options.yaml
├── example
├── ios
│ ├── Flutter
│ │ ├── Debug.xcconfig
│ │ ├── Release.xcconfig
│ │ └── AppFrameworkInfo.plist
│ ├── Runner
│ │ ├── Runner-Bridging-Header.h
│ │ ├── Assets.xcassets
│ │ │ ├── LaunchImage.imageset
│ │ │ │ ├── LaunchImage.png
│ │ │ │ ├── LaunchImage@2x.png
│ │ │ │ ├── LaunchImage@3x.png
│ │ │ │ ├── README.md
│ │ │ │ └── Contents.json
│ │ │ └── AppIcon.appiconset
│ │ │ │ ├── Icon-App-20x20@1x.png
│ │ │ │ ├── Icon-App-20x20@2x.png
│ │ │ │ ├── Icon-App-20x20@3x.png
│ │ │ │ ├── Icon-App-29x29@1x.png
│ │ │ │ ├── Icon-App-29x29@2x.png
│ │ │ │ ├── Icon-App-29x29@3x.png
│ │ │ │ ├── Icon-App-40x40@1x.png
│ │ │ │ ├── Icon-App-40x40@2x.png
│ │ │ │ ├── Icon-App-40x40@3x.png
│ │ │ │ ├── Icon-App-60x60@2x.png
│ │ │ │ ├── Icon-App-60x60@3x.png
│ │ │ │ ├── Icon-App-76x76@1x.png
│ │ │ │ ├── Icon-App-76x76@2x.png
│ │ │ │ ├── Icon-App-1024x1024@1x.png
│ │ │ │ ├── Icon-App-83.5x83.5@2x.png
│ │ │ │ └── Contents.json
│ │ ├── AppDelegate.swift
│ │ ├── Base.lproj
│ │ │ ├── Main.storyboard
│ │ │ └── LaunchScreen.storyboard
│ │ └── Info.plist
│ ├── Runner.xcodeproj
│ │ ├── project.xcworkspace
│ │ │ ├── contents.xcworkspacedata
│ │ │ └── xcshareddata
│ │ │ │ ├── WorkspaceSettings.xcsettings
│ │ │ │ └── IDEWorkspaceChecks.plist
│ │ ├── xcshareddata
│ │ │ └── xcschemes
│ │ │ │ └── Runner.xcscheme
│ │ └── project.pbxproj
│ ├── Runner.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ ├── WorkspaceSettings.xcsettings
│ │ │ └── IDEWorkspaceChecks.plist
│ ├── RunnerTests
│ │ └── RunnerTests.swift
│ └── .gitignore
├── macos
│ ├── Flutter
│ │ ├── Flutter-Debug.xcconfig
│ │ ├── Flutter-Release.xcconfig
│ │ └── GeneratedPluginRegistrant.swift
│ ├── Runner
│ │ ├── Configs
│ │ │ ├── Debug.xcconfig
│ │ │ ├── Release.xcconfig
│ │ │ ├── Warnings.xcconfig
│ │ │ └── AppInfo.xcconfig
│ │ ├── Assets.xcassets
│ │ │ └── AppIcon.appiconset
│ │ │ │ ├── app_icon_1024.png
│ │ │ │ ├── app_icon_128.png
│ │ │ │ ├── app_icon_16.png
│ │ │ │ ├── app_icon_256.png
│ │ │ │ ├── app_icon_32.png
│ │ │ │ ├── app_icon_512.png
│ │ │ │ ├── app_icon_64.png
│ │ │ │ └── Contents.json
│ │ ├── Release.entitlements
│ │ ├── AppDelegate.swift
│ │ ├── DebugProfile.entitlements
│ │ ├── MainFlutterWindow.swift
│ │ ├── Info.plist
│ │ └── Base.lproj
│ │ │ └── MainMenu.xib
│ ├── .gitignore
│ ├── Runner.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ ├── Runner.xcodeproj
│ │ ├── project.xcworkspace
│ │ │ └── xcshareddata
│ │ │ │ └── IDEWorkspaceChecks.plist
│ │ ├── xcshareddata
│ │ │ └── xcschemes
│ │ │ │ └── Runner.xcscheme
│ │ └── project.pbxproj
│ └── RunnerTests
│ │ └── RunnerTests.swift
├── web
│ ├── favicon.png
│ ├── icons
│ │ ├── Icon-192.png
│ │ ├── Icon-512.png
│ │ ├── Icon-maskable-192.png
│ │ └── Icon-maskable-512.png
│ ├── manifest.json
│ └── index.html
├── android
│ ├── app
│ │ ├── src
│ │ │ ├── main
│ │ │ │ ├── res
│ │ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ └── launch_background.xml
│ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ └── launch_background.xml
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── styles.xml
│ │ │ │ │ └── values-night
│ │ │ │ │ │ └── styles.xml
│ │ │ │ ├── kotlin
│ │ │ │ │ └── fr
│ │ │ │ │ │ └── pyozer
│ │ │ │ │ │ └── dots_indicator_example
│ │ │ │ │ │ └── MainActivity.kt
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── debug
│ │ │ │ └── AndroidManifest.xml
│ │ │ └── profile
│ │ │ │ └── AndroidManifest.xml
│ │ └── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ └── gradle-wrapper.properties
│ ├── .gitignore
│ ├── build.gradle
│ └── settings.gradle
├── pubspec.yaml
├── README.md
├── .gitignore
├── analysis_options.yaml
├── .metadata
└── lib
│ └── main.dart
├── demo
├── normal.gif
├── custom_size.gif
├── custom_color.gif
├── custom_shape.gif
└── custom_space.gif
├── lib
├── dots_indicator.dart
└── src
│ ├── dots_decorator.dart
│ └── dots_indicator.dart
├── pubspec.yaml
├── LICENSE
├── .gitignore
├── CHANGELOG.md
└── README.md
/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | include: package:lints/recommended.yaml
--------------------------------------------------------------------------------
/example/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/example/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/demo/normal.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/demo/normal.gif
--------------------------------------------------------------------------------
/example/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/demo/custom_size.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/demo/custom_size.gif
--------------------------------------------------------------------------------
/example/macos/Flutter/Flutter-Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "ephemeral/Flutter-Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/example/macos/Flutter/Flutter-Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "ephemeral/Flutter-Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/demo/custom_color.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/demo/custom_color.gif
--------------------------------------------------------------------------------
/demo/custom_shape.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/demo/custom_shape.gif
--------------------------------------------------------------------------------
/demo/custom_space.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/demo/custom_space.gif
--------------------------------------------------------------------------------
/example/web/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/web/favicon.png
--------------------------------------------------------------------------------
/example/web/icons/Icon-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/web/icons/Icon-192.png
--------------------------------------------------------------------------------
/example/web/icons/Icon-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/web/icons/Icon-512.png
--------------------------------------------------------------------------------
/example/macos/Runner/Configs/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "../../Flutter/Flutter-Debug.xcconfig"
2 | #include "Warnings.xcconfig"
3 |
--------------------------------------------------------------------------------
/example/macos/Runner/Configs/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "../../Flutter/Flutter-Release.xcconfig"
2 | #include "Warnings.xcconfig"
3 |
--------------------------------------------------------------------------------
/example/web/icons/Icon-maskable-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/web/icons/Icon-maskable-192.png
--------------------------------------------------------------------------------
/example/web/icons/Icon-maskable-512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/web/icons/Icon-maskable-512.png
--------------------------------------------------------------------------------
/example/macos/.gitignore:
--------------------------------------------------------------------------------
1 | # Flutter-related
2 | **/Flutter/ephemeral/
3 | **/Pods/
4 |
5 | # Xcode-related
6 | **/dgph
7 | **/xcuserdata/
8 |
--------------------------------------------------------------------------------
/lib/dots_indicator.dart:
--------------------------------------------------------------------------------
1 | library dots_indicator;
2 |
3 | export 'src/dots_indicator.dart' show DotsIndicator;
4 | export 'src/dots_decorator.dart' show DotsDecorator;
5 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Pyozer/dots_indicator/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/example/android/app/src/main/kotlin/fr/pyozer/dots_indicator_example/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package fr.pyozer.dots_indicator_example
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity()
6 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/example/macos/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/example/macos/Flutter/GeneratedPluginRegistrant.swift:
--------------------------------------------------------------------------------
1 | //
2 | // Generated file. Do not edit.
3 | //
4 |
5 | import FlutterMacOS
6 | import Foundation
7 |
8 |
9 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
10 | }
11 |
--------------------------------------------------------------------------------
/example/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | zipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
6 |
--------------------------------------------------------------------------------
/example/macos/Runner/Release.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
9 | # Remember to never publicly share your keystore.
10 | # See https://flutter.dev/to/reference-keystore
11 | key.properties
12 | **/*.keystore
13 | **/*.jks
14 |
--------------------------------------------------------------------------------
/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/pubspec.yaml:
--------------------------------------------------------------------------------
1 | name: dots_indicator
2 | description: Dots indicator to show progression of a PageView for example
3 | version: 4.0.1
4 | homepage: https://github.com/pyozer/dots_indicator
5 |
6 | environment:
7 | sdk: '>=2.17.0 <4.0.0'
8 |
9 | dependencies:
10 | flutter:
11 | sdk: flutter
12 |
13 | dev_dependencies:
14 | flutter_lints: ^5.0.0
15 |
--------------------------------------------------------------------------------
/example/ios/RunnerTests/RunnerTests.swift:
--------------------------------------------------------------------------------
1 | import Flutter
2 | import UIKit
3 | import XCTest
4 |
5 | class RunnerTests: XCTestCase {
6 |
7 | func testExample() {
8 | // If you add code to the Runner application, consider adding tests here.
9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
10 | }
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/example/macos/RunnerTests/RunnerTests.swift:
--------------------------------------------------------------------------------
1 | import Cocoa
2 | import FlutterMacOS
3 | import XCTest
4 |
5 | class RunnerTests: XCTestCase {
6 |
7 | func testExample() {
8 | // If you add code to the Runner application, consider adding tests here.
9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
10 | }
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/example/macos/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import Cocoa
2 | import FlutterMacOS
3 |
4 | @main
5 | class AppDelegate: FlutterAppDelegate {
6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
7 | return true
8 | }
9 |
10 | override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
11 | return true
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/example/android/build.gradle:
--------------------------------------------------------------------------------
1 | allprojects {
2 | repositories {
3 | google()
4 | mavenCentral()
5 | }
6 | }
7 |
8 | rootProject.buildDir = "../build"
9 | subprojects {
10 | project.buildDir = "${rootProject.buildDir}/${project.name}"
11 | }
12 | subprojects {
13 | project.evaluationDependsOn(":app")
14 | }
15 |
16 | tasks.register("clean", Delete) {
17 | delete rootProject.buildDir
18 | }
19 |
--------------------------------------------------------------------------------
/example/pubspec.yaml:
--------------------------------------------------------------------------------
1 | name: dots_indicator_example
2 | description: "Demonstrates how to use the dots_indicator package"
3 | publish_to: 'none'
4 | version: 1.0.0
5 |
6 | environment:
7 | sdk: '>=2.17.0 <4.0.0'
8 |
9 | dependencies:
10 | flutter:
11 | sdk: flutter
12 |
13 | dots_indicator:
14 | path: ../
15 |
16 | dev_dependencies:
17 | flutter_lints: ^5.0.0
18 |
19 | flutter:
20 | uses-material-design: true
21 |
--------------------------------------------------------------------------------
/example/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/example/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/example/macos/Runner/DebugProfile.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 | com.apple.security.cs.allow-jit
8 |
9 | com.apple.security.network.server
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/example/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import Flutter
2 | import UIKit
3 |
4 | @main
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/example/macos/Runner/MainFlutterWindow.swift:
--------------------------------------------------------------------------------
1 | import Cocoa
2 | import FlutterMacOS
3 |
4 | class MainFlutterWindow: NSWindow {
5 | override func awakeFromNib() {
6 | let flutterViewController = FlutterViewController()
7 | let windowFrame = self.frame
8 | self.contentViewController = flutterViewController
9 | self.setFrame(windowFrame, display: true)
10 |
11 | RegisterGeneratedPlugins(registry: flutterViewController)
12 |
13 | super.awakeFromNib()
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/example/README.md:
--------------------------------------------------------------------------------
1 | # dots_indicator_example
2 |
3 | Demonstrates how to use the dots_indicator package.
4 |
5 | ## Getting Started
6 |
7 | This project is a starting point for a Flutter application.
8 |
9 | A few resources to get you started if this is your first Flutter project:
10 |
11 | - [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
12 | - [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
13 |
14 | For help getting started with Flutter development, view the
15 | [online documentation](https://docs.flutter.dev/), which offers tutorials,
16 | samples, guidance on mobile development, and a full API reference.
17 |
--------------------------------------------------------------------------------
/example/macos/Runner/Configs/Warnings.xcconfig:
--------------------------------------------------------------------------------
1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings
2 | GCC_WARN_UNDECLARED_SELECTOR = YES
3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES
4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE
5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
6 | CLANG_WARN_PRAGMA_PACK = YES
7 | CLANG_WARN_STRICT_PROTOTYPES = YES
8 | CLANG_WARN_COMMA = YES
9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES
10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES
11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES
12 | GCC_WARN_SHADOW = YES
13 | CLANG_WARN_UNREACHABLE_CODE = YES
14 |
--------------------------------------------------------------------------------
/example/macos/Runner/Configs/AppInfo.xcconfig:
--------------------------------------------------------------------------------
1 | // Application-level settings for the Runner target.
2 | //
3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the
4 | // future. If not, the values below would default to using the project name when this becomes a
5 | // 'flutter create' template.
6 |
7 | // The application's name. By default this is also the title of the Flutter window.
8 | PRODUCT_NAME = dots_indicator_example
9 |
10 | // The application's bundle identifier
11 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample
12 |
13 | // The copyright displayed in application information
14 | PRODUCT_COPYRIGHT = Copyright © 2025 fr.pyozer. All rights reserved.
15 |
--------------------------------------------------------------------------------
/example/ios/.gitignore:
--------------------------------------------------------------------------------
1 | **/dgph
2 | *.mode1v3
3 | *.mode2v3
4 | *.moved-aside
5 | *.pbxuser
6 | *.perspectivev3
7 | **/*sync/
8 | .sconsign.dblite
9 | .tags*
10 | **/.vagrant/
11 | **/DerivedData/
12 | Icon?
13 | **/Pods/
14 | **/.symlinks/
15 | profile
16 | xcuserdata
17 | **/.generated/
18 | Flutter/App.framework
19 | Flutter/Flutter.framework
20 | Flutter/Flutter.podspec
21 | Flutter/Generated.xcconfig
22 | Flutter/ephemeral/
23 | Flutter/app.flx
24 | Flutter/app.zip
25 | Flutter/flutter_assets/
26 | Flutter/flutter_export_environment.sh
27 | ServiceDefinitions.json
28 | Runner/GeneratedPluginRegistrant.*
29 |
30 | # Exceptions to above rules.
31 | !default.mode1v3
32 | !default.mode2v3
33 | !default.pbxuser
34 | !default.perspectivev3
35 |
--------------------------------------------------------------------------------
/example/android/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | def flutterSdkPath = {
3 | def properties = new Properties()
4 | file("local.properties").withInputStream { properties.load(it) }
5 | def flutterSdkPath = properties.getProperty("flutter.sdk")
6 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
7 | return flutterSdkPath
8 | }()
9 |
10 | includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
11 |
12 | repositories {
13 | google()
14 | mavenCentral()
15 | gradlePluginPortal()
16 | }
17 | }
18 |
19 | plugins {
20 | id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21 | id "com.android.application" version "8.1.0" apply false
22 | id "org.jetbrains.kotlin.android" version "1.8.22" apply false
23 | }
24 |
25 | include ":app"
26 |
--------------------------------------------------------------------------------
/example/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 12.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/example/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .build/
9 | .buildlog/
10 | .history
11 | .svn/
12 | .swiftpm/
13 | migrate_working_dir/
14 |
15 | # IntelliJ related
16 | *.iml
17 | *.ipr
18 | *.iws
19 | .idea/
20 |
21 | # The .vscode folder contains launch configuration and tasks you configure in
22 | # VS Code which you may wish to be included in version control, so this line
23 | # is commented out by default.
24 | #.vscode/
25 |
26 | # Flutter/Dart/Pub related
27 | **/doc/api/
28 | **/ios/Flutter/.last_build_id
29 | .dart_tool/
30 | .flutter-plugins
31 | .flutter-plugins-dependencies
32 | .pub-cache/
33 | .pub/
34 | /build/
35 |
36 | # Symbolication related
37 | app.*.symbols
38 |
39 | # Obfuscation related
40 | app.*.map.json
41 |
42 | # Android Studio will place build artifacts here
43 | /android/app/debug
44 | /android/app/profile
45 | /android/app/release
46 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/example/web/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "dots_indicator_example",
3 | "short_name": "dots_indicator_example",
4 | "start_url": ".",
5 | "display": "standalone",
6 | "background_color": "#0175C2",
7 | "theme_color": "#0175C2",
8 | "description": "A new Flutter project.",
9 | "orientation": "portrait-primary",
10 | "prefer_related_applications": false,
11 | "icons": [
12 | {
13 | "src": "icons/Icon-192.png",
14 | "sizes": "192x192",
15 | "type": "image/png"
16 | },
17 | {
18 | "src": "icons/Icon-512.png",
19 | "sizes": "512x512",
20 | "type": "image/png"
21 | },
22 | {
23 | "src": "icons/Icon-maskable-192.png",
24 | "sizes": "192x192",
25 | "type": "image/png",
26 | "purpose": "maskable"
27 | },
28 | {
29 | "src": "icons/Icon-maskable-512.png",
30 | "sizes": "512x512",
31 | "type": "image/png",
32 | "purpose": "maskable"
33 | }
34 | ]
35 | }
36 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Jean-Charles Moussé
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/example/macos/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIconFile
10 |
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(FLUTTER_BUILD_NAME)
21 | CFBundleVersion
22 | $(FLUTTER_BUILD_NUMBER)
23 | LSMinimumSystemVersion
24 | $(MACOSX_DEPLOYMENT_TARGET)
25 | NSHumanReadableCopyright
26 | $(PRODUCT_COPYRIGHT)
27 | NSMainNibFile
28 | MainMenu
29 | NSPrincipalClass
30 | NSApplication
31 |
32 |
33 |
--------------------------------------------------------------------------------
/example/web/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | dots_indicator_example
33 |
34 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/example/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | # This file configures the analyzer, which statically analyzes Dart code to
2 | # check for errors, warnings, and lints.
3 | #
4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6 | # invoked from the command line by running `flutter analyze`.
7 |
8 | # The following line activates a set of recommended lints for Flutter apps,
9 | # packages, and plugins designed to encourage good coding practices.
10 | include: package:flutter_lints/flutter.yaml
11 |
12 | linter:
13 | # The lint rules applied to this project can be customized in the
14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15 | # included above or to enable additional rules. A list of all available lints
16 | # and their documentation is published at https://dart.dev/lints.
17 | #
18 | # Instead of disabling a lint rule for the entire project in the
19 | # section below, it can also be suppressed for a single line of code
20 | # or a specific dart file by using the `// ignore: name_of_lint` and
21 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file
22 | # producing the lint.
23 | rules:
24 | # avoid_print: false # Uncomment to disable the `avoid_print` rule
25 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
26 |
27 | # Additional information about this file can be found at
28 | # https://dart.dev/guides/language/analysis-options
29 |
--------------------------------------------------------------------------------
/example/.metadata:
--------------------------------------------------------------------------------
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: "d8a9f9a52e5af486f80d932e838ee93861ffd863"
8 | channel: "stable"
9 |
10 | project_type: app
11 |
12 | # Tracks metadata for the flutter migrate command
13 | migration:
14 | platforms:
15 | - platform: root
16 | create_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
17 | base_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
18 | - platform: android
19 | create_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
20 | base_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
21 | - platform: ios
22 | create_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
23 | base_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
24 | - platform: macos
25 | create_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
26 | base_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
27 | - platform: web
28 | create_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
29 | base_revision: d8a9f9a52e5af486f80d932e838ee93861ffd863
30 |
31 | # User provided section
32 |
33 | # List of Local paths (relative to this file) that should be
34 | # ignored by the migrate tool.
35 | #
36 | # Files that are not part of the templates will be ignored by default.
37 | unmanaged_files:
38 | - 'lib/main.dart'
39 | - 'ios/Runner.xcodeproj/project.pbxproj'
40 |
--------------------------------------------------------------------------------
/example/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | id "com.android.application"
3 | id "kotlin-android"
4 | // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5 | id "dev.flutter.flutter-gradle-plugin"
6 | }
7 |
8 | android {
9 | namespace = "fr.pyozer.dots_indicator_example"
10 | compileSdk = flutter.compileSdkVersion
11 | ndkVersion = flutter.ndkVersion
12 |
13 | compileOptions {
14 | sourceCompatibility = JavaVersion.VERSION_1_8
15 | targetCompatibility = JavaVersion.VERSION_1_8
16 | }
17 |
18 | kotlinOptions {
19 | jvmTarget = JavaVersion.VERSION_1_8
20 | }
21 |
22 | defaultConfig {
23 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24 | applicationId = "fr.pyozer.dots_indicator_example"
25 | // You can update the following values to match your application needs.
26 | // For more information, see: https://flutter.dev/to/review-gradle-config.
27 | minSdk = flutter.minSdkVersion
28 | targetSdk = flutter.targetSdkVersion
29 | versionCode = flutter.versionCode
30 | versionName = flutter.versionName
31 | }
32 |
33 | buildTypes {
34 | release {
35 | // TODO: Add your own signing config for the release build.
36 | // Signing with the debug keys for now, so `flutter run --release` works.
37 | signingConfig = signingConfigs.debug
38 | }
39 | }
40 | }
41 |
42 | flutter {
43 | source = "../.."
44 | }
45 |
--------------------------------------------------------------------------------
/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "16x16",
5 | "idiom" : "mac",
6 | "filename" : "app_icon_16.png",
7 | "scale" : "1x"
8 | },
9 | {
10 | "size" : "16x16",
11 | "idiom" : "mac",
12 | "filename" : "app_icon_32.png",
13 | "scale" : "2x"
14 | },
15 | {
16 | "size" : "32x32",
17 | "idiom" : "mac",
18 | "filename" : "app_icon_32.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "32x32",
23 | "idiom" : "mac",
24 | "filename" : "app_icon_64.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "128x128",
29 | "idiom" : "mac",
30 | "filename" : "app_icon_128.png",
31 | "scale" : "1x"
32 | },
33 | {
34 | "size" : "128x128",
35 | "idiom" : "mac",
36 | "filename" : "app_icon_256.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "256x256",
41 | "idiom" : "mac",
42 | "filename" : "app_icon_256.png",
43 | "scale" : "1x"
44 | },
45 | {
46 | "size" : "256x256",
47 | "idiom" : "mac",
48 | "filename" : "app_icon_512.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "512x512",
53 | "idiom" : "mac",
54 | "filename" : "app_icon_512.png",
55 | "scale" : "1x"
56 | },
57 | {
58 | "size" : "512x512",
59 | "idiom" : "mac",
60 | "filename" : "app_icon_1024.png",
61 | "scale" : "2x"
62 | }
63 | ],
64 | "info" : {
65 | "version" : 1,
66 | "author" : "xcode"
67 | }
68 | }
69 |
--------------------------------------------------------------------------------
/example/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.lock
4 | *.log
5 | *.pyc
6 | *.swp
7 | .DS_Store
8 | .atom/
9 | .buildlog/
10 | .history
11 | .svn/
12 |
13 | # IntelliJ related
14 | *.iml
15 | *.ipr
16 | *.iws
17 | .idea/
18 |
19 | # Visual Studio Code related
20 | .vscode/
21 |
22 | # Flutter/Dart/Pub related
23 | **/doc/api/
24 | .dart_tool/
25 | .flutter-plugins
26 | .packages
27 | .pub-cache/
28 | .pub/
29 | build/
30 | flutter_export_environment.sh
31 |
32 | # Android related
33 | **/android/**/gradle-wrapper.jar
34 | **/android/.gradle
35 | **/android/captures/
36 | **/android/gradlew
37 | **/android/gradlew.bat
38 | **/android/local.properties
39 | **/android/**/GeneratedPluginRegistrant.java
40 |
41 | **/android/keystore
42 | **/android/keystore.properties
43 | **/android/app/release/
44 |
45 | # iOS/XCode related
46 | **/ios/**/*.mode1v3
47 | **/ios/**/*.mode2v3
48 | **/ios/**/*.moved-aside
49 | **/ios/**/*.pbxuser
50 | **/ios/**/*.perspectivev3
51 | **/ios/**/*sync/
52 | **/ios/**/.sconsign.dblite
53 | **/ios/**/.tags*
54 | **/ios/**/.vagrant/
55 | **/ios/**/DerivedData/
56 | **/ios/**/Icon?
57 | **/ios/**/Pods/
58 | **/ios/**/.symlinks/
59 | **/ios/**/profile
60 | **/ios/**/xcuserdata
61 | **/ios/.generated/
62 | **/ios/Flutter/App.framework
63 | **/ios/Flutter/Flutter.framework
64 | **/ios/Flutter/Generated.xcconfig
65 | **/ios/Flutter/app.flx
66 | **/ios/Flutter/app.zip
67 | **/ios/Flutter/flutter_assets/
68 | **/ios/ServiceDefinitions.json
69 | **/ios/Runner/GeneratedPluginRegistrant.*
70 |
71 | # Exceptions to above rules.
72 | !**/ios/**/default.mode1v3
73 | !**/ios/**/default.mode2v3
74 | !**/ios/**/default.pbxuser
75 | !**/ios/**/default.perspectivev3
76 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
--------------------------------------------------------------------------------
/example/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | Dots Indicator Example
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | dots_indicator_example
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(FLUTTER_BUILD_NAME)
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | $(FLUTTER_BUILD_NUMBER)
25 | LSRequiresIPhoneOS
26 |
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIMainStoryboardFile
30 | Main
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 | CADisableMinimumFrameDurationOnPhone
45 |
46 | UIApplicationSupportsIndirectInputEvents
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/example/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
15 |
19 |
23 |
24 |
25 |
26 |
27 |
28 |
30 |
33 |
34 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/example/ios/Runner/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # CHANGELOG
2 |
3 | ## 4.0.1
4 |
5 | * Reduce min sdk of example app
6 |
7 | ## 4.0.0
8 |
9 | **BREAKING CHANGE**
10 | * Change position from int to double, to be able to have lerp animation (like in 2.X.X versions)
11 |
12 | ## 3.1.0
13 | * Added shadows parameter to add a shadow to the dots (Thanks to [PR#24](https://github.com/Pyozer/dots_indicator/pull/26))
14 | * Add shadow property for active dots (Thanks to [PR#29](https://github.com/Pyozer/dots_indicator/pull/29))
15 | * Added parameter to allow for an indefinite pager indicator behavior (Thanks to [PR#28](https://github.com/Pyozer/dots_indicator/pull/28))
16 | * Regenerate example app
17 |
18 | ## 3.0.0
19 | * Changed position to int + fixed sample (Thanks to [PR#24](https://github.com/Pyozer/dots_indicator/pull/24))
20 |
21 | ## 2.1.2
22 | * REVERT: Changed position to int + fixed sample (Thanks to [PR#24](https://github.com/Pyozer/dots_indicator/pull/24))
23 |
24 | ## 2.1.1
25 | * Changed position to int + fixed sample (Thanks to [PR#24](https://github.com/Pyozer/dots_indicator/pull/24))
26 |
27 | ## 2.1.0
28 |
29 | * Add specific color for each dot, colors/activeColors params added (Thanks to [PR#7](https://github.com/Pyozer/dots_indicator/pull/7))
30 | * Add specific size for each dot, sizes/activeSizes params added
31 | * Add specific shape for each dot, shapes/activeShapes params added
32 | * Replace default light blue for active color, by the theme primary color (Thanks to [Issue#20](https://github.com/Pyozer/dots_indicator/issues/20))
33 | * Update example app
34 |
35 | ## 2.0.0
36 |
37 | * Add null-safety support (Thanks to [PR#15](https://github.com/Pyozer/dots_indicator/pull/15))
38 |
39 | ## 1.2.0
40 |
41 | * Add `onTap` callback (Thanks to [PR#10](https://github.com/Pyozer/dots_indicator/pull/10))
42 |
43 | ## 1.1.0
44 |
45 | * Set position to `double` and add transition between dots (Thanks to [PR#8](https://github.com/Pyozer/dots_indicator/pull/8))
46 |
47 | ## 1.0.0
48 |
49 | * Add `axis` property to have possibility to display dots as vertical
50 | * Add `reversed` property to display dots in reverse position
51 | * Add example app
52 |
53 | ## 0.0.5+1
54 |
55 | * Fix assert on `position` property
56 |
57 | ## 0.0.5
58 |
59 | * __BREAKING :__ Now dots customizations like color, size and spacing are provided by a DotsDecorator model with `decorator` property.
60 |
61 | ## 0.0.4
62 |
63 | * Fix full width of the widget. (Thanks to fvisticot)
64 |
65 | ## 0.0.3
66 |
67 | * Publish on Pub
68 |
69 | ## 0.0.2
70 |
71 | * Add asserts to avoid bug
72 |
73 | ## 0.0.1
74 |
75 | * Initial Release
76 |
--------------------------------------------------------------------------------
/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-App-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-App-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-App-29x29@1x.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-App-29x29@2x.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "29x29",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-App-29x29@3x.png",
31 | "scale" : "3x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-App-40x40@2x.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "40x40",
41 | "idiom" : "iphone",
42 | "filename" : "Icon-App-40x40@3x.png",
43 | "scale" : "3x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "Icon-App-60x60@2x.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "60x60",
53 | "idiom" : "iphone",
54 | "filename" : "Icon-App-60x60@3x.png",
55 | "scale" : "3x"
56 | },
57 | {
58 | "size" : "20x20",
59 | "idiom" : "ipad",
60 | "filename" : "Icon-App-20x20@1x.png",
61 | "scale" : "1x"
62 | },
63 | {
64 | "size" : "20x20",
65 | "idiom" : "ipad",
66 | "filename" : "Icon-App-20x20@2x.png",
67 | "scale" : "2x"
68 | },
69 | {
70 | "size" : "29x29",
71 | "idiom" : "ipad",
72 | "filename" : "Icon-App-29x29@1x.png",
73 | "scale" : "1x"
74 | },
75 | {
76 | "size" : "29x29",
77 | "idiom" : "ipad",
78 | "filename" : "Icon-App-29x29@2x.png",
79 | "scale" : "2x"
80 | },
81 | {
82 | "size" : "40x40",
83 | "idiom" : "ipad",
84 | "filename" : "Icon-App-40x40@1x.png",
85 | "scale" : "1x"
86 | },
87 | {
88 | "size" : "40x40",
89 | "idiom" : "ipad",
90 | "filename" : "Icon-App-40x40@2x.png",
91 | "scale" : "2x"
92 | },
93 | {
94 | "size" : "76x76",
95 | "idiom" : "ipad",
96 | "filename" : "Icon-App-76x76@1x.png",
97 | "scale" : "1x"
98 | },
99 | {
100 | "size" : "76x76",
101 | "idiom" : "ipad",
102 | "filename" : "Icon-App-76x76@2x.png",
103 | "scale" : "2x"
104 | },
105 | {
106 | "size" : "83.5x83.5",
107 | "idiom" : "ipad",
108 | "filename" : "Icon-App-83.5x83.5@2x.png",
109 | "scale" : "2x"
110 | },
111 | {
112 | "size" : "1024x1024",
113 | "idiom" : "ios-marketing",
114 | "filename" : "Icon-App-1024x1024@1x.png",
115 | "scale" : "1x"
116 | }
117 | ],
118 | "info" : {
119 | "version" : 1,
120 | "author" : "xcode"
121 | }
122 | }
123 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
37 |
38 |
39 |
40 |
43 |
49 |
50 |
51 |
52 |
53 |
63 |
65 |
71 |
72 |
73 |
74 |
80 |
82 |
88 |
89 |
90 |
91 |
93 |
94 |
97 |
98 |
99 |
--------------------------------------------------------------------------------
/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
37 |
38 |
39 |
40 |
43 |
49 |
50 |
51 |
52 |
53 |
63 |
65 |
71 |
72 |
73 |
74 |
80 |
82 |
88 |
89 |
90 |
91 |
93 |
94 |
97 |
98 |
99 |
--------------------------------------------------------------------------------
/lib/src/dots_decorator.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | const Size kDefaultSize = Size.square(9.0);
4 | const Size kDefaultFadeOutSize = Size.square(6.0);
5 | const EdgeInsets kDefaultSpacing = EdgeInsets.all(6.0);
6 | const ShapeBorder kDefaultShape = CircleBorder();
7 |
8 | class DotsDecorator {
9 | /// Inactive dot color
10 | ///
11 | /// @Default `Colors.grey`
12 | final Color color;
13 |
14 | /// List of inactive dot colors
15 | /// One color by dot
16 | ///
17 | /// @Default `Value of color parameter applied to each dot`
18 | final List colors;
19 |
20 | /// Active dot color
21 | ///
22 | /// @Default `Theme.of(context).primaryColor`
23 | final Color? activeColor;
24 |
25 | /// List of active dot colors
26 | /// One color by dot
27 | ///
28 | /// @Default `Value of activeColor parameter applied to each dot`
29 | final List activeColors;
30 |
31 | /// Inactive dot size
32 | ///
33 | /// @Default `Size.square(9.0)`
34 | final Size size;
35 |
36 | /// List of inactive dot size
37 | /// One size by dot
38 | ///
39 | /// @Default `Value of size parameter applied to each dot`
40 | final List sizes;
41 |
42 | /// Fade out dot size
43 | ///
44 | /// @Default `Size.square(6.0)`
45 | final Size fadeOutSize;
46 |
47 | /// List of fade out dot size
48 | /// One size by dot
49 | ///
50 | /// @Default `Value of activeSize parameter applied to each dot`
51 | final List fadeOutSizes;
52 |
53 | /// Active dot size
54 | ///
55 | /// @Default `Size.square(9.0)`
56 | final Size activeSize;
57 |
58 | /// List of active dot size
59 | /// One size by dot
60 | ///
61 | /// @Default `Value of activeSize parameter applied to each dot`
62 | final List activeSizes;
63 |
64 | /// Inactive dot shape
65 | ///
66 | /// @Default `CircleBorder()`
67 | final ShapeBorder shape;
68 |
69 | /// List of inactive dot shape
70 | /// One shape by dot
71 | ///
72 | /// @Default `Value of shape parameter applied to each dot`
73 | final List shapes;
74 |
75 | /// Active dot shape
76 | ///
77 | /// @Default `CircleBorder()`
78 | final ShapeBorder activeShape;
79 |
80 | /// List of active dot shapes
81 | /// One shape by dot
82 | ///
83 | /// @Default `Value of activeShape parameter applied to each dot`
84 | final List activeShapes;
85 |
86 | /// Spacing between dots
87 | ///
88 | /// @Default `EdgeInsets.all(6.0)`
89 | final EdgeInsets spacing;
90 |
91 | /// Shadows of the dots
92 | ///
93 | /// @Default `null`
94 | final List? shadows;
95 |
96 | /// Shadows of the active dots
97 | ///
98 | /// @Default `shadows` or `null`
99 | final List? activeShadows;
100 |
101 | const DotsDecorator({
102 | this.color = Colors.grey,
103 | this.colors = const [],
104 | this.activeColor,
105 | this.activeColors = const [],
106 | this.size = kDefaultSize,
107 | this.sizes = const [],
108 | this.fadeOutSize = kDefaultFadeOutSize,
109 | this.fadeOutSizes = const [],
110 | this.activeSize = kDefaultSize,
111 | this.activeSizes = const [],
112 | this.shape = kDefaultShape,
113 | this.shapes = const [],
114 | this.activeShape = kDefaultShape,
115 | this.activeShapes = const [],
116 | this.spacing = kDefaultSpacing,
117 | this.shadows,
118 | this.activeShadows,
119 | });
120 |
121 | Color? getActiveColor(int index) {
122 | return activeColors.isNotEmpty ? activeColors[index] : activeColor;
123 | }
124 |
125 | Color getColor(int index) {
126 | return colors.isNotEmpty ? colors[index] : color;
127 | }
128 |
129 | Size getFadeOutSize(int index) {
130 | return fadeOutSizes.isNotEmpty ? fadeOutSizes[index] : fadeOutSize;
131 | }
132 |
133 | Size getActiveSize(int index) {
134 | return activeSizes.isNotEmpty ? activeSizes[index] : activeSize;
135 | }
136 |
137 | Size getSize(int index) {
138 | return sizes.isNotEmpty ? sizes[index] : size;
139 | }
140 |
141 | ShapeBorder getActiveShape(int index) {
142 | return activeShapes.isNotEmpty ? activeShapes[index] : activeShape;
143 | }
144 |
145 | ShapeBorder getShape(int index) {
146 | return shapes.isNotEmpty ? shapes[index] : shape;
147 | }
148 |
149 | List? getShadows(int index) {
150 | return shadows;
151 | }
152 |
153 | List? getActiveShadows(int index) {
154 | return activeShadows ?? shadows;
155 | }
156 | }
157 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # dots_indicator
2 |
3 | Widget to display dots indicator to show a position (for a PageView for example).
4 |
5 | ## Installation
6 |
7 | You just need to add `dots_indicator` as a [dependency in your pubspec.yaml file](https://flutter.io/using-packages/).
8 |
9 | ```yaml
10 | dependencies:
11 | dots_indicator: ^4.0.1
12 | ```
13 |
14 | ## Example
15 |
16 | In these examples, `pageLength` is the total of dots to display and `currentPage` is the position to hightlight (the active dot).
17 |
18 | For information, `currentPage` is a double, to be able to have lerp animation.
19 |
20 | ### A simple dots indicator
21 |
22 | 
23 |
24 | ```dart
25 | new DotsIndicator(
26 | dotsCount: pageLength,
27 | position: currentPage,
28 | );
29 | ```
30 |
31 | ### Custom colors
32 |
33 | 
34 |
35 | ```dart
36 | new DotsIndicator(
37 | dotsCount: pageLength,
38 | position: currentPage,
39 | decorator: DotsDecorator(
40 | color: Colors.black87, // Inactive color
41 | activeColor: Colors.redAccent,
42 | ),
43 | );
44 | ```
45 |
46 | ### Use specific color for each dot
47 |
48 | You can choose to have one color for inactive dots and one color the active dot.
49 |
50 | But you can also define one color by inactive dots (`colors`) and one color by active dot (`activeColors`).
51 |
52 | If you have a total of 3 dots, you must provide an array of 3 colors.
53 |
54 | ```dart
55 | new DotsIndicator(
56 | dotsCount: pageLength,
57 | position: currentPage,
58 | decorator: DotsDecorator(
59 | colors: [Colors.grey[300], Colors.grey[600], Colors.grey[900]], // Inactive dot colors
60 | activeColors: [Colors.red[300], Colors.red[600], Colors.red[900]], // Àctive dot colors
61 | ),
62 | );
63 | ```
64 |
65 | ### Custom size and shape
66 |
67 | You can change the default size of dots and also shape.
68 |
69 | So you can choose to have a shape for inactive dots and another shape for the active dot for example.
70 | **By default, the shape of dots are CircleBorder, so to have a rounded rectangle for active one, you need to change `activeShape`**
71 |
72 | 
73 |
74 | ```dart
75 | new DotsIndicator(
76 | dotsCount: pageLength,
77 | position: currentPage,
78 | decorator: DotsDecorator(
79 | size: const Size.square(9.0),
80 | activeSize: const Size(18.0, 9.0),
81 | activeShape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5.0)),
82 | ),
83 | );
84 | ```
85 |
86 | ### Custom size for each dot
87 |
88 | You can customize the size of each dot, for inactive and/or active dots.
89 |
90 | For that, use `sizes` and/or `activeSizes` params.
91 |
92 | ```dart
93 | new DotsIndicator(
94 | dotsCount: pageLength,
95 | position: currentPage,
96 | decorator: DotsDecorator(
97 | sizes: [
98 | const Size.square(10.0),
99 | const Size.square(15.0),
100 | const Size.square(20.0),
101 | ],
102 | activeSizes: [
103 | const Size.square(25.0),
104 | const Size.square(25.0),
105 | const Size.square(35.0),
106 | ],
107 | ),
108 | );
109 | ```
110 |
111 | ### Custom shape
112 |
113 | You can change the default shape of dots. By default it's a CircleBorder.
114 |
115 | You can change the no active and active dot shape.
116 |
117 | 
118 |
119 | ```dart
120 | new DotsIndicator(
121 | dotsCount: pageLength,
122 | position: currentPage,
123 | decorator: DotsDecorator(
124 | shape: const Border(),
125 | activeShape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(5.0)),
126 | ),
127 | );
128 | ```
129 | ### Custom shape for each dot
130 |
131 | You can customize the shape of each dot, for inactive and/or active dots.
132 |
133 | For that, use `shapes` and/or `activeShapes` params.
134 |
135 | ```dart
136 | new DotsIndicator(
137 | dotsCount: pageLength,
138 | position: currentPage,
139 | decorator: DotsDecorator(
140 | shapes: [
141 | RoundedRectangleBorder(borderRadius: BorderRadius.circular(5.0)),
142 | RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0)),
143 | RoundedRectangleBorder(borderRadius: BorderRadius.circular(15.0)),
144 | ],
145 | activeShapes: [
146 | RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0)),
147 | RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0)),
148 | RoundedRectangleBorder(borderRadius: BorderRadius.circular(25.0)),
149 | ],
150 | ),
151 | );
152 | ```
153 |
154 | ### Change the space between dots
155 |
156 | By default a dot have a margin of 6 pixels on his left and right. It's `EdgeInsets.symmetric(horizontal: 6.0)`.
157 | But if you want you can change it, for example to increase the space between dots or to add top margin.
158 |
159 | 
160 |
161 | ```dart
162 | new DotsIndicator(
163 | dotsCount: pageLength,
164 | position: currentPage,
165 | decorator: DotsDecorator(
166 | spacing: const EdgeInsets.all(10.0),
167 | ),
168 | );
169 | ```
170 |
171 | ### Axis and reverse property
172 |
173 | There is two other property, `axis` and `reversed`.
174 | Axis is to display dots indicator horizontally (default) or vertically.
175 | Also, you can set `reversed: true` to reverse the order of dots. (default: false).
176 |
177 | For example, if you want to display the dots indicator vertically, but with the first dots on bottom :
178 | Set `axis: Axis.vertical` and `reversed: true`.
179 | Obviously, you can use reversed with `Axis.horizontal`.
180 |
181 | ### onTap property
182 |
183 | You can add `onTap` property, to listen when a dot has been pressed.
184 | Exemple:
185 | ```
186 | onTap: (position) {
187 | setState(() => _currentPos = position);
188 | }
189 | ```
190 |
--------------------------------------------------------------------------------
/lib/src/dots_indicator.dart:
--------------------------------------------------------------------------------
1 | library dots_indicator;
2 |
3 | import 'dart:math';
4 |
5 | import 'package:dots_indicator/src/dots_decorator.dart';
6 | import 'package:flutter/material.dart';
7 |
8 | typedef OnTap = void Function(int position);
9 |
10 | class DotsIndicator extends StatelessWidget {
11 | final int dotsCount;
12 | final double position;
13 |
14 | /// If true, the last dot will fade out when the position is at the last dot.
15 | final bool fadeOutLastDot;
16 |
17 | /// Distance from currently selected dot to the one that fades out.
18 | final int fadeOutDistance;
19 | final DotsDecorator decorator;
20 | final Axis axis;
21 | final bool reversed;
22 | final OnTap? onTap;
23 | final MainAxisSize mainAxisSize;
24 | final MainAxisAlignment mainAxisAlignment;
25 |
26 | /// If true, the dots will animate when the position changes.
27 | final bool animate;
28 |
29 | /// Duration of the animation when the position changes.
30 | final Duration animationDuration;
31 |
32 | DotsIndicator({
33 | super.key,
34 | required this.dotsCount,
35 | this.position = 0.0,
36 | this.decorator = const DotsDecorator(),
37 | this.axis = Axis.horizontal,
38 | this.reversed = false,
39 | this.mainAxisSize = MainAxisSize.min,
40 | this.mainAxisAlignment = MainAxisAlignment.center,
41 | this.onTap,
42 | this.fadeOutLastDot = false,
43 | this.fadeOutDistance = 0,
44 | this.animate = false,
45 | this.animationDuration = const Duration(milliseconds: 200),
46 | }) : assert(dotsCount > 0, 'dotsCount must be superior to zero'),
47 | assert(position >= 0.0, 'position must be superior or equals to zero'),
48 | assert(
49 | position < dotsCount,
50 | "position must be less than dotsCount",
51 | ),
52 | assert(
53 | decorator.colors.isEmpty || decorator.colors.length == dotsCount,
54 | "colors param in decorator must empty or have same length as dotsCount parameter",
55 | ),
56 | assert(
57 | decorator.activeColors.isEmpty ||
58 | decorator.activeColors.length == dotsCount,
59 | "activeColors param in decorator must empty or have same length as dotsCount parameter",
60 | ),
61 | assert(
62 | decorator.sizes.isEmpty || decorator.sizes.length == dotsCount,
63 | "sizes param in decorator must empty or have same length as dotsCount parameter",
64 | ),
65 | assert(
66 | decorator.activeSizes.isEmpty ||
67 | decorator.activeSizes.length == dotsCount,
68 | "activeSizes param in decorator must empty or have same length as dotsCount parameter",
69 | ),
70 | assert(
71 | decorator.shapes.isEmpty || decorator.shapes.length == dotsCount,
72 | "shapes param in decorator must empty or have same length as dotsCount parameter",
73 | ),
74 | assert(
75 | decorator.activeShapes.isEmpty ||
76 | decorator.activeShapes.length == dotsCount,
77 | "activeShapes param in decorator must empty or have same length as dotsCount parameter",
78 | ),
79 | assert(
80 | fadeOutLastDot == false || fadeOutDistance > 0,
81 | "fadeOutDistace must be superior to zero when fadeOutLastDot is true",
82 | ),
83 | assert(
84 | fadeOutDistance < dotsCount,
85 | "fadeOutDistace must be inferior to dotsCount",
86 | );
87 |
88 | Widget _wrapInkwell(Widget dot, int index) {
89 | return InkWell(
90 | customBorder: position == index
91 | ? decorator.getActiveShape(index)
92 | : decorator.getShape(index),
93 | onTap: () => onTap!(index),
94 | child: dot,
95 | );
96 | }
97 |
98 | Widget _buildDot(BuildContext context, int index) {
99 | final double absPositionIndexRelation = (position - index).abs();
100 | final bool isCurrentlyVisible = absPositionIndexRelation <= fadeOutDistance;
101 |
102 | final double lerpValue = min(1.0, absPositionIndexRelation).toDouble();
103 |
104 | Size size = Size.lerp(
105 | decorator.getActiveSize(index),
106 | decorator.getSize(index),
107 | lerpValue,
108 | )!;
109 |
110 | if (fadeOutLastDot && absPositionIndexRelation >= fadeOutDistance) {
111 | size = Size.lerp(
112 | decorator.getSize(index),
113 | decorator.getFadeOutSize(index),
114 | absPositionIndexRelation == fadeOutDistance ? 1 : 0.0,
115 | )!;
116 | }
117 |
118 | final dot = Container(
119 | height: fadeOutLastDot && isCurrentlyVisible
120 | ? max(
121 | max(decorator.getActiveSize(index).height,
122 | decorator.getSize(index).height),
123 | decorator.getFadeOutSize(index).height,
124 | ) +
125 | (axis == Axis.horizontal
126 | ? decorator.spacing.vertical
127 | : decorator.spacing.horizontal)
128 | : null,
129 | child: Center(
130 | child: AnimatedOpacity(
131 | duration: animate ? animationDuration : Duration.zero,
132 | opacity:
133 | !fadeOutLastDot || absPositionIndexRelation <= fadeOutDistance
134 | ? 1.0
135 | : 0.0,
136 | child: AnimatedContainer(
137 | duration: animate ? animationDuration : Duration.zero,
138 | width: size.width,
139 | height: size.height,
140 | margin: fadeOutLastDot && !isCurrentlyVisible
141 | ? EdgeInsets.all(0)
142 | : decorator.spacing,
143 | decoration: ShapeDecoration(
144 | color: Color.lerp(
145 | decorator.getActiveColor(index) ?? Theme.of(context).primaryColor,
146 | decorator.getColor(index),
147 | lerpValue,
148 | ),
149 | shape: ShapeBorder.lerp(
150 | decorator.getActiveShape(index),
151 | decorator.getShape(index),
152 | lerpValue,
153 | )!,
154 | shadows: BoxShadow.lerpList(
155 | decorator.getActiveShadows(index),
156 | decorator.getShadows(index),
157 | lerpValue,
158 | ),
159 | ),
160 | ),
161 | ),
162 | ),
163 | );
164 | return onTap == null ? dot : _wrapInkwell(dot, index);
165 | }
166 |
167 | @override
168 | Widget build(BuildContext context) {
169 | final dotsList = List.generate(
170 | dotsCount,
171 | (i) => _buildDot(context, i),
172 | );
173 | final dots = reversed ? dotsList.reversed.toList() : dotsList;
174 |
175 | return axis == Axis.vertical
176 | ? Column(
177 | mainAxisAlignment: mainAxisAlignment,
178 | mainAxisSize: mainAxisSize,
179 | children: dots,
180 | )
181 | : Row(
182 | mainAxisAlignment: mainAxisAlignment,
183 | mainAxisSize: mainAxisSize,
184 | children: dots,
185 | );
186 | }
187 | }
188 |
--------------------------------------------------------------------------------
/example/lib/main.dart:
--------------------------------------------------------------------------------
1 | import 'dart:math';
2 |
3 | import 'package:dots_indicator/dots_indicator.dart';
4 | import 'package:flutter/material.dart';
5 |
6 | void main() => runApp(MyApp());
7 |
8 | class MyApp extends StatefulWidget {
9 | const MyApp({super.key});
10 |
11 | @override
12 | MyAppState createState() => MyAppState();
13 | }
14 |
15 | class MyAppState extends State {
16 | final _totalDots = 5;
17 | double _currentPosition = 0.0;
18 |
19 | double _validPosition(double position) {
20 | if (position >= _totalDots) return 0.0;
21 | if (position < 0.0) return _totalDots - 1;
22 | return position;
23 | }
24 |
25 | void _updatePosition(double position) {
26 | setState(() => _currentPosition = _validPosition(position));
27 | }
28 |
29 | Widget _buildRow(List widgets) {
30 | return Padding(
31 | padding: const EdgeInsets.only(bottom: 24.0),
32 | child: Row(
33 | mainAxisAlignment: MainAxisAlignment.spaceAround,
34 | children: widgets,
35 | ),
36 | );
37 | }
38 |
39 | String getPrettyCurrPosition() {
40 | return (_currentPosition + 1).toStringAsFixed(2);
41 | }
42 |
43 | @override
44 | Widget build(BuildContext context) {
45 | final decorator = DotsDecorator(
46 | activeColor: Colors.red,
47 | size: Size.square(15.0),
48 | activeSize: Size.square(35.0),
49 | activeShape: RoundedRectangleBorder(
50 | borderRadius: BorderRadius.circular(25.0),
51 | ),
52 | );
53 |
54 | const titleStyle = TextStyle(
55 | fontWeight: FontWeight.w700,
56 | fontSize: 18.0,
57 | );
58 |
59 | return MaterialApp(
60 | home: Scaffold(
61 | appBar: AppBar(
62 | title: const Text('Dots indicator example'),
63 | ),
64 | body: Center(
65 | child: ListView(
66 | shrinkWrap: true,
67 | padding: const EdgeInsets.all(16.0),
68 | children: [
69 | _buildRow([
70 | Text(
71 | 'Current position ${getPrettyCurrPosition()} / $_totalDots',
72 | style: titleStyle,
73 | ),
74 | ]),
75 | _buildRow([
76 | SizedBox(
77 | width: 300.0,
78 | child: Slider(
79 | value: _currentPosition,
80 | max: (_totalDots - 1).toDouble(),
81 | onChanged: _updatePosition,
82 | ),
83 | ),
84 | ]),
85 | _buildRow([
86 | FloatingActionButton(
87 | child: const Icon(Icons.remove),
88 | onPressed: () {
89 | _currentPosition = _currentPosition.ceilToDouble();
90 | _updatePosition(max(--_currentPosition, 0.0));
91 | },
92 | ),
93 | FloatingActionButton(
94 | child: const Icon(Icons.add),
95 | onPressed: () {
96 | _currentPosition = _currentPosition.floorToDouble();
97 | _updatePosition(min(
98 | ++_currentPosition,
99 | _totalDots.toDouble(),
100 | ));
101 | },
102 | )
103 | ]),
104 | _buildRow([
105 | Column(
106 | children: [
107 | const Text('Vertical', style: titleStyle),
108 | const SizedBox(height: 16.0),
109 | DotsIndicator(
110 | dotsCount: _totalDots,
111 | position: _currentPosition,
112 | axis: Axis.vertical,
113 | decorator: decorator,
114 | onTap: (pos) {
115 | setState(() => _currentPosition = pos.toDouble());
116 | },
117 | ),
118 | ],
119 | ),
120 | Column(
121 | children: [
122 | const Text('Vertical reversed', style: titleStyle),
123 | const SizedBox(height: 16.0),
124 | DotsIndicator(
125 | dotsCount: _totalDots,
126 | position: _currentPosition,
127 | axis: Axis.vertical,
128 | reversed: true,
129 | decorator: decorator,
130 | ),
131 | ],
132 | ),
133 | ]),
134 | _buildRow([
135 | const Text('Horizontal', style: titleStyle),
136 | ]),
137 | _buildRow([
138 | const Text('Individual custom dot'),
139 | DotsIndicator(
140 | dotsCount: _totalDots,
141 | position: _currentPosition,
142 | decorator: DotsDecorator(
143 | colors: [
144 | Colors.red,
145 | Colors.blue,
146 | Colors.green,
147 | Colors.yellow,
148 | Colors.cyan,
149 | ].reversed.toList(),
150 | activeColors: [
151 | Colors.red,
152 | Colors.blue,
153 | Colors.green,
154 | Colors.yellow,
155 | Colors.cyan,
156 | ],
157 | sizes: [
158 | Size.square(40.0),
159 | Size.square(35.0),
160 | Size.square(30.0),
161 | Size.square(25.0),
162 | Size.square(20.0),
163 | ],
164 | activeSizes: [
165 | Size.square(20.0),
166 | Size.square(25.0),
167 | Size.square(30.0),
168 | Size.square(35.0),
169 | Size.square(40.0),
170 | ],
171 | shapes: [
172 | RoundedRectangleBorder(
173 | borderRadius: BorderRadius.circular(5.0)),
174 | RoundedRectangleBorder(
175 | borderRadius: BorderRadius.circular(10.0)),
176 | RoundedRectangleBorder(
177 | borderRadius: BorderRadius.circular(15.0)),
178 | RoundedRectangleBorder(
179 | borderRadius: BorderRadius.circular(20.0)),
180 | RoundedRectangleBorder(
181 | borderRadius: BorderRadius.circular(25.0)),
182 | ],
183 | activeShapes: [
184 | RoundedRectangleBorder(
185 | borderRadius: BorderRadius.circular(5.0)),
186 | RoundedRectangleBorder(
187 | borderRadius: BorderRadius.circular(10.0)),
188 | RoundedRectangleBorder(
189 | borderRadius: BorderRadius.circular(15.0)),
190 | RoundedRectangleBorder(
191 | borderRadius: BorderRadius.circular(20.0)),
192 | RoundedRectangleBorder(
193 | borderRadius: BorderRadius.circular(25.0)),
194 | ],
195 | ),
196 | ),
197 | ]),
198 | _buildRow([
199 | const Text('Reversed'),
200 | DotsIndicator(
201 | dotsCount: _totalDots,
202 | position: _currentPosition,
203 | reversed: true,
204 | decorator: decorator,
205 | ),
206 | ]),
207 | _buildRow([
208 | const Text('Indefinite Pager Indicator'),
209 | DotsIndicator(
210 | dotsCount: _totalDots,
211 | position: _currentPosition,
212 | decorator: decorator,
213 | fadeOutLastDot: true,
214 | fadeOutDistance: 2,
215 | animate: true,
216 | ),
217 | ]),
218 | ],
219 | ),
220 | ),
221 | ),
222 | );
223 | }
224 | }
225 |
--------------------------------------------------------------------------------
/example/macos/Runner/Base.lproj/MainMenu.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
344 |
--------------------------------------------------------------------------------
/example/ios/Runner.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
12 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
13 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
14 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
15 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
16 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
17 | /* End PBXBuildFile section */
18 |
19 | /* Begin PBXContainerItemProxy section */
20 | 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
21 | isa = PBXContainerItemProxy;
22 | containerPortal = 97C146E61CF9000F007C117D /* Project object */;
23 | proxyType = 1;
24 | remoteGlobalIDString = 97C146ED1CF9000F007C117D;
25 | remoteInfo = Runner;
26 | };
27 | /* End PBXContainerItemProxy section */
28 |
29 | /* Begin PBXCopyFilesBuildPhase section */
30 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
31 | isa = PBXCopyFilesBuildPhase;
32 | buildActionMask = 2147483647;
33 | dstPath = "";
34 | dstSubfolderSpec = 10;
35 | files = (
36 | );
37 | name = "Embed Frameworks";
38 | runOnlyForDeploymentPostprocessing = 0;
39 | };
40 | /* End PBXCopyFilesBuildPhase section */
41 |
42 | /* Begin PBXFileReference section */
43 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
44 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
45 | 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
46 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
47 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
48 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
49 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
50 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
51 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
52 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
53 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
54 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
55 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
56 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
57 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
58 | /* End PBXFileReference section */
59 |
60 | /* Begin PBXFrameworksBuildPhase section */
61 | 97C146EB1CF9000F007C117D /* Frameworks */ = {
62 | isa = PBXFrameworksBuildPhase;
63 | buildActionMask = 2147483647;
64 | files = (
65 | );
66 | runOnlyForDeploymentPostprocessing = 0;
67 | };
68 | /* End PBXFrameworksBuildPhase section */
69 |
70 | /* Begin PBXGroup section */
71 | 331C8082294A63A400263BE5 /* RunnerTests */ = {
72 | isa = PBXGroup;
73 | children = (
74 | 331C807B294A618700263BE5 /* RunnerTests.swift */,
75 | );
76 | path = RunnerTests;
77 | sourceTree = "";
78 | };
79 | 9740EEB11CF90186004384FC /* Flutter */ = {
80 | isa = PBXGroup;
81 | children = (
82 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
83 | 9740EEB21CF90195004384FC /* Debug.xcconfig */,
84 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
85 | 9740EEB31CF90195004384FC /* Generated.xcconfig */,
86 | );
87 | name = Flutter;
88 | sourceTree = "";
89 | };
90 | 97C146E51CF9000F007C117D = {
91 | isa = PBXGroup;
92 | children = (
93 | 9740EEB11CF90186004384FC /* Flutter */,
94 | 97C146F01CF9000F007C117D /* Runner */,
95 | 97C146EF1CF9000F007C117D /* Products */,
96 | 331C8082294A63A400263BE5 /* RunnerTests */,
97 | );
98 | sourceTree = "";
99 | };
100 | 97C146EF1CF9000F007C117D /* Products */ = {
101 | isa = PBXGroup;
102 | children = (
103 | 97C146EE1CF9000F007C117D /* Runner.app */,
104 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
105 | );
106 | name = Products;
107 | sourceTree = "";
108 | };
109 | 97C146F01CF9000F007C117D /* Runner */ = {
110 | isa = PBXGroup;
111 | children = (
112 | 97C146FA1CF9000F007C117D /* Main.storyboard */,
113 | 97C146FD1CF9000F007C117D /* Assets.xcassets */,
114 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
115 | 97C147021CF9000F007C117D /* Info.plist */,
116 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
117 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
118 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
119 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
120 | );
121 | path = Runner;
122 | sourceTree = "";
123 | };
124 | /* End PBXGroup section */
125 |
126 | /* Begin PBXNativeTarget section */
127 | 331C8080294A63A400263BE5 /* RunnerTests */ = {
128 | isa = PBXNativeTarget;
129 | buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
130 | buildPhases = (
131 | 331C807D294A63A400263BE5 /* Sources */,
132 | 331C807F294A63A400263BE5 /* Resources */,
133 | );
134 | buildRules = (
135 | );
136 | dependencies = (
137 | 331C8086294A63A400263BE5 /* PBXTargetDependency */,
138 | );
139 | name = RunnerTests;
140 | productName = RunnerTests;
141 | productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
142 | productType = "com.apple.product-type.bundle.unit-test";
143 | };
144 | 97C146ED1CF9000F007C117D /* Runner */ = {
145 | isa = PBXNativeTarget;
146 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
147 | buildPhases = (
148 | 9740EEB61CF901F6004384FC /* Run Script */,
149 | 97C146EA1CF9000F007C117D /* Sources */,
150 | 97C146EB1CF9000F007C117D /* Frameworks */,
151 | 97C146EC1CF9000F007C117D /* Resources */,
152 | 9705A1C41CF9048500538489 /* Embed Frameworks */,
153 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
154 | );
155 | buildRules = (
156 | );
157 | dependencies = (
158 | );
159 | name = Runner;
160 | productName = Runner;
161 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
162 | productType = "com.apple.product-type.application";
163 | };
164 | /* End PBXNativeTarget section */
165 |
166 | /* Begin PBXProject section */
167 | 97C146E61CF9000F007C117D /* Project object */ = {
168 | isa = PBXProject;
169 | attributes = {
170 | BuildIndependentTargetsInParallel = YES;
171 | LastUpgradeCheck = 1510;
172 | ORGANIZATIONNAME = "";
173 | TargetAttributes = {
174 | 331C8080294A63A400263BE5 = {
175 | CreatedOnToolsVersion = 14.0;
176 | TestTargetID = 97C146ED1CF9000F007C117D;
177 | };
178 | 97C146ED1CF9000F007C117D = {
179 | CreatedOnToolsVersion = 7.3.1;
180 | LastSwiftMigration = 1100;
181 | };
182 | };
183 | };
184 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
185 | compatibilityVersion = "Xcode 9.3";
186 | developmentRegion = en;
187 | hasScannedForEncodings = 0;
188 | knownRegions = (
189 | en,
190 | Base,
191 | );
192 | mainGroup = 97C146E51CF9000F007C117D;
193 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
194 | projectDirPath = "";
195 | projectRoot = "";
196 | targets = (
197 | 97C146ED1CF9000F007C117D /* Runner */,
198 | 331C8080294A63A400263BE5 /* RunnerTests */,
199 | );
200 | };
201 | /* End PBXProject section */
202 |
203 | /* Begin PBXResourcesBuildPhase section */
204 | 331C807F294A63A400263BE5 /* Resources */ = {
205 | isa = PBXResourcesBuildPhase;
206 | buildActionMask = 2147483647;
207 | files = (
208 | );
209 | runOnlyForDeploymentPostprocessing = 0;
210 | };
211 | 97C146EC1CF9000F007C117D /* Resources */ = {
212 | isa = PBXResourcesBuildPhase;
213 | buildActionMask = 2147483647;
214 | files = (
215 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
216 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
217 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
218 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
219 | );
220 | runOnlyForDeploymentPostprocessing = 0;
221 | };
222 | /* End PBXResourcesBuildPhase section */
223 |
224 | /* Begin PBXShellScriptBuildPhase section */
225 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
226 | isa = PBXShellScriptBuildPhase;
227 | alwaysOutOfDate = 1;
228 | buildActionMask = 2147483647;
229 | files = (
230 | );
231 | inputPaths = (
232 | "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
233 | );
234 | name = "Thin Binary";
235 | outputPaths = (
236 | );
237 | runOnlyForDeploymentPostprocessing = 0;
238 | shellPath = /bin/sh;
239 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
240 | };
241 | 9740EEB61CF901F6004384FC /* Run Script */ = {
242 | isa = PBXShellScriptBuildPhase;
243 | alwaysOutOfDate = 1;
244 | buildActionMask = 2147483647;
245 | files = (
246 | );
247 | inputPaths = (
248 | );
249 | name = "Run Script";
250 | outputPaths = (
251 | );
252 | runOnlyForDeploymentPostprocessing = 0;
253 | shellPath = /bin/sh;
254 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
255 | };
256 | /* End PBXShellScriptBuildPhase section */
257 |
258 | /* Begin PBXSourcesBuildPhase section */
259 | 331C807D294A63A400263BE5 /* Sources */ = {
260 | isa = PBXSourcesBuildPhase;
261 | buildActionMask = 2147483647;
262 | files = (
263 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
264 | );
265 | runOnlyForDeploymentPostprocessing = 0;
266 | };
267 | 97C146EA1CF9000F007C117D /* Sources */ = {
268 | isa = PBXSourcesBuildPhase;
269 | buildActionMask = 2147483647;
270 | files = (
271 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
272 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
273 | );
274 | runOnlyForDeploymentPostprocessing = 0;
275 | };
276 | /* End PBXSourcesBuildPhase section */
277 |
278 | /* Begin PBXTargetDependency section */
279 | 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
280 | isa = PBXTargetDependency;
281 | target = 97C146ED1CF9000F007C117D /* Runner */;
282 | targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
283 | };
284 | /* End PBXTargetDependency section */
285 |
286 | /* Begin PBXVariantGroup section */
287 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
288 | isa = PBXVariantGroup;
289 | children = (
290 | 97C146FB1CF9000F007C117D /* Base */,
291 | );
292 | name = Main.storyboard;
293 | sourceTree = "";
294 | };
295 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
296 | isa = PBXVariantGroup;
297 | children = (
298 | 97C147001CF9000F007C117D /* Base */,
299 | );
300 | name = LaunchScreen.storyboard;
301 | sourceTree = "";
302 | };
303 | /* End PBXVariantGroup section */
304 |
305 | /* Begin XCBuildConfiguration section */
306 | 249021D3217E4FDB00AE95B9 /* Profile */ = {
307 | isa = XCBuildConfiguration;
308 | buildSettings = {
309 | ALWAYS_SEARCH_USER_PATHS = NO;
310 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
311 | CLANG_ANALYZER_NONNULL = YES;
312 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
313 | CLANG_CXX_LIBRARY = "libc++";
314 | CLANG_ENABLE_MODULES = YES;
315 | CLANG_ENABLE_OBJC_ARC = YES;
316 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
317 | CLANG_WARN_BOOL_CONVERSION = YES;
318 | CLANG_WARN_COMMA = YES;
319 | CLANG_WARN_CONSTANT_CONVERSION = YES;
320 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
321 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
322 | CLANG_WARN_EMPTY_BODY = YES;
323 | CLANG_WARN_ENUM_CONVERSION = YES;
324 | CLANG_WARN_INFINITE_RECURSION = YES;
325 | CLANG_WARN_INT_CONVERSION = YES;
326 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
327 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
328 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
329 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
330 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
331 | CLANG_WARN_STRICT_PROTOTYPES = YES;
332 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
333 | CLANG_WARN_UNREACHABLE_CODE = YES;
334 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
335 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
336 | COPY_PHASE_STRIP = NO;
337 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
338 | ENABLE_NS_ASSERTIONS = NO;
339 | ENABLE_STRICT_OBJC_MSGSEND = YES;
340 | ENABLE_USER_SCRIPT_SANDBOXING = NO;
341 | GCC_C_LANGUAGE_STANDARD = gnu99;
342 | GCC_NO_COMMON_BLOCKS = YES;
343 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
344 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
345 | GCC_WARN_UNDECLARED_SELECTOR = YES;
346 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
347 | GCC_WARN_UNUSED_FUNCTION = YES;
348 | GCC_WARN_UNUSED_VARIABLE = YES;
349 | IPHONEOS_DEPLOYMENT_TARGET = 12.0;
350 | MTL_ENABLE_DEBUG_INFO = NO;
351 | SDKROOT = iphoneos;
352 | SUPPORTED_PLATFORMS = iphoneos;
353 | TARGETED_DEVICE_FAMILY = "1,2";
354 | VALIDATE_PRODUCT = YES;
355 | };
356 | name = Profile;
357 | };
358 | 249021D4217E4FDB00AE95B9 /* Profile */ = {
359 | isa = XCBuildConfiguration;
360 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
361 | buildSettings = {
362 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
363 | CLANG_ENABLE_MODULES = YES;
364 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
365 | DEVELOPMENT_TEAM = V2UM7Y3N2K;
366 | ENABLE_BITCODE = NO;
367 | INFOPLIST_FILE = Runner/Info.plist;
368 | LD_RUNPATH_SEARCH_PATHS = (
369 | "$(inherited)",
370 | "@executable_path/Frameworks",
371 | );
372 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample;
373 | PRODUCT_NAME = "$(TARGET_NAME)";
374 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
375 | SWIFT_VERSION = 5.0;
376 | VERSIONING_SYSTEM = "apple-generic";
377 | };
378 | name = Profile;
379 | };
380 | 331C8088294A63A400263BE5 /* Debug */ = {
381 | isa = XCBuildConfiguration;
382 | buildSettings = {
383 | BUNDLE_LOADER = "$(TEST_HOST)";
384 | CODE_SIGN_STYLE = Automatic;
385 | CURRENT_PROJECT_VERSION = 1;
386 | GENERATE_INFOPLIST_FILE = YES;
387 | MARKETING_VERSION = 1.0;
388 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample.RunnerTests;
389 | PRODUCT_NAME = "$(TARGET_NAME)";
390 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
391 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
392 | SWIFT_VERSION = 5.0;
393 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
394 | };
395 | name = Debug;
396 | };
397 | 331C8089294A63A400263BE5 /* Release */ = {
398 | isa = XCBuildConfiguration;
399 | buildSettings = {
400 | BUNDLE_LOADER = "$(TEST_HOST)";
401 | CODE_SIGN_STYLE = Automatic;
402 | CURRENT_PROJECT_VERSION = 1;
403 | GENERATE_INFOPLIST_FILE = YES;
404 | MARKETING_VERSION = 1.0;
405 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample.RunnerTests;
406 | PRODUCT_NAME = "$(TARGET_NAME)";
407 | SWIFT_VERSION = 5.0;
408 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
409 | };
410 | name = Release;
411 | };
412 | 331C808A294A63A400263BE5 /* Profile */ = {
413 | isa = XCBuildConfiguration;
414 | buildSettings = {
415 | BUNDLE_LOADER = "$(TEST_HOST)";
416 | CODE_SIGN_STYLE = Automatic;
417 | CURRENT_PROJECT_VERSION = 1;
418 | GENERATE_INFOPLIST_FILE = YES;
419 | MARKETING_VERSION = 1.0;
420 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample.RunnerTests;
421 | PRODUCT_NAME = "$(TARGET_NAME)";
422 | SWIFT_VERSION = 5.0;
423 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
424 | };
425 | name = Profile;
426 | };
427 | 97C147031CF9000F007C117D /* Debug */ = {
428 | isa = XCBuildConfiguration;
429 | buildSettings = {
430 | ALWAYS_SEARCH_USER_PATHS = NO;
431 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
432 | CLANG_ANALYZER_NONNULL = YES;
433 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
434 | CLANG_CXX_LIBRARY = "libc++";
435 | CLANG_ENABLE_MODULES = YES;
436 | CLANG_ENABLE_OBJC_ARC = YES;
437 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
438 | CLANG_WARN_BOOL_CONVERSION = YES;
439 | CLANG_WARN_COMMA = YES;
440 | CLANG_WARN_CONSTANT_CONVERSION = YES;
441 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
443 | CLANG_WARN_EMPTY_BODY = YES;
444 | CLANG_WARN_ENUM_CONVERSION = YES;
445 | CLANG_WARN_INFINITE_RECURSION = YES;
446 | CLANG_WARN_INT_CONVERSION = YES;
447 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
448 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
449 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
450 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
451 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
452 | CLANG_WARN_STRICT_PROTOTYPES = YES;
453 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
454 | CLANG_WARN_UNREACHABLE_CODE = YES;
455 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
456 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
457 | COPY_PHASE_STRIP = NO;
458 | DEBUG_INFORMATION_FORMAT = dwarf;
459 | ENABLE_STRICT_OBJC_MSGSEND = YES;
460 | ENABLE_TESTABILITY = YES;
461 | ENABLE_USER_SCRIPT_SANDBOXING = NO;
462 | GCC_C_LANGUAGE_STANDARD = gnu99;
463 | GCC_DYNAMIC_NO_PIC = NO;
464 | GCC_NO_COMMON_BLOCKS = YES;
465 | GCC_OPTIMIZATION_LEVEL = 0;
466 | GCC_PREPROCESSOR_DEFINITIONS = (
467 | "DEBUG=1",
468 | "$(inherited)",
469 | );
470 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
471 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
472 | GCC_WARN_UNDECLARED_SELECTOR = YES;
473 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
474 | GCC_WARN_UNUSED_FUNCTION = YES;
475 | GCC_WARN_UNUSED_VARIABLE = YES;
476 | IPHONEOS_DEPLOYMENT_TARGET = 12.0;
477 | MTL_ENABLE_DEBUG_INFO = YES;
478 | ONLY_ACTIVE_ARCH = YES;
479 | SDKROOT = iphoneos;
480 | TARGETED_DEVICE_FAMILY = "1,2";
481 | };
482 | name = Debug;
483 | };
484 | 97C147041CF9000F007C117D /* Release */ = {
485 | isa = XCBuildConfiguration;
486 | buildSettings = {
487 | ALWAYS_SEARCH_USER_PATHS = NO;
488 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
489 | CLANG_ANALYZER_NONNULL = YES;
490 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
491 | CLANG_CXX_LIBRARY = "libc++";
492 | CLANG_ENABLE_MODULES = YES;
493 | CLANG_ENABLE_OBJC_ARC = YES;
494 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
495 | CLANG_WARN_BOOL_CONVERSION = YES;
496 | CLANG_WARN_COMMA = YES;
497 | CLANG_WARN_CONSTANT_CONVERSION = YES;
498 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
499 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
500 | CLANG_WARN_EMPTY_BODY = YES;
501 | CLANG_WARN_ENUM_CONVERSION = YES;
502 | CLANG_WARN_INFINITE_RECURSION = YES;
503 | CLANG_WARN_INT_CONVERSION = YES;
504 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
505 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
506 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
507 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
508 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
509 | CLANG_WARN_STRICT_PROTOTYPES = YES;
510 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
511 | CLANG_WARN_UNREACHABLE_CODE = YES;
512 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
513 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
514 | COPY_PHASE_STRIP = NO;
515 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
516 | ENABLE_NS_ASSERTIONS = NO;
517 | ENABLE_STRICT_OBJC_MSGSEND = YES;
518 | ENABLE_USER_SCRIPT_SANDBOXING = NO;
519 | GCC_C_LANGUAGE_STANDARD = gnu99;
520 | GCC_NO_COMMON_BLOCKS = YES;
521 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
522 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
523 | GCC_WARN_UNDECLARED_SELECTOR = YES;
524 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
525 | GCC_WARN_UNUSED_FUNCTION = YES;
526 | GCC_WARN_UNUSED_VARIABLE = YES;
527 | IPHONEOS_DEPLOYMENT_TARGET = 12.0;
528 | MTL_ENABLE_DEBUG_INFO = NO;
529 | SDKROOT = iphoneos;
530 | SUPPORTED_PLATFORMS = iphoneos;
531 | SWIFT_COMPILATION_MODE = wholemodule;
532 | SWIFT_OPTIMIZATION_LEVEL = "-O";
533 | TARGETED_DEVICE_FAMILY = "1,2";
534 | VALIDATE_PRODUCT = YES;
535 | };
536 | name = Release;
537 | };
538 | 97C147061CF9000F007C117D /* Debug */ = {
539 | isa = XCBuildConfiguration;
540 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
541 | buildSettings = {
542 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
543 | CLANG_ENABLE_MODULES = YES;
544 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
545 | DEVELOPMENT_TEAM = V2UM7Y3N2K;
546 | ENABLE_BITCODE = NO;
547 | INFOPLIST_FILE = Runner/Info.plist;
548 | LD_RUNPATH_SEARCH_PATHS = (
549 | "$(inherited)",
550 | "@executable_path/Frameworks",
551 | );
552 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample;
553 | PRODUCT_NAME = "$(TARGET_NAME)";
554 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
555 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
556 | SWIFT_VERSION = 5.0;
557 | VERSIONING_SYSTEM = "apple-generic";
558 | };
559 | name = Debug;
560 | };
561 | 97C147071CF9000F007C117D /* Release */ = {
562 | isa = XCBuildConfiguration;
563 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
564 | buildSettings = {
565 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
566 | CLANG_ENABLE_MODULES = YES;
567 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
568 | DEVELOPMENT_TEAM = V2UM7Y3N2K;
569 | ENABLE_BITCODE = NO;
570 | INFOPLIST_FILE = Runner/Info.plist;
571 | LD_RUNPATH_SEARCH_PATHS = (
572 | "$(inherited)",
573 | "@executable_path/Frameworks",
574 | );
575 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample;
576 | PRODUCT_NAME = "$(TARGET_NAME)";
577 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
578 | SWIFT_VERSION = 5.0;
579 | VERSIONING_SYSTEM = "apple-generic";
580 | };
581 | name = Release;
582 | };
583 | /* End XCBuildConfiguration section */
584 |
585 | /* Begin XCConfigurationList section */
586 | 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
587 | isa = XCConfigurationList;
588 | buildConfigurations = (
589 | 331C8088294A63A400263BE5 /* Debug */,
590 | 331C8089294A63A400263BE5 /* Release */,
591 | 331C808A294A63A400263BE5 /* Profile */,
592 | );
593 | defaultConfigurationIsVisible = 0;
594 | defaultConfigurationName = Release;
595 | };
596 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
597 | isa = XCConfigurationList;
598 | buildConfigurations = (
599 | 97C147031CF9000F007C117D /* Debug */,
600 | 97C147041CF9000F007C117D /* Release */,
601 | 249021D3217E4FDB00AE95B9 /* Profile */,
602 | );
603 | defaultConfigurationIsVisible = 0;
604 | defaultConfigurationName = Release;
605 | };
606 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
607 | isa = XCConfigurationList;
608 | buildConfigurations = (
609 | 97C147061CF9000F007C117D /* Debug */,
610 | 97C147071CF9000F007C117D /* Release */,
611 | 249021D4217E4FDB00AE95B9 /* Profile */,
612 | );
613 | defaultConfigurationIsVisible = 0;
614 | defaultConfigurationName = Release;
615 | };
616 | /* End XCConfigurationList section */
617 | };
618 | rootObject = 97C146E61CF9000F007C117D /* Project object */;
619 | }
620 |
--------------------------------------------------------------------------------
/example/macos/Runner.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXAggregateTarget section */
10 | 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = {
11 | isa = PBXAggregateTarget;
12 | buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */;
13 | buildPhases = (
14 | 33CC111E2044C6BF0003C045 /* ShellScript */,
15 | );
16 | dependencies = (
17 | );
18 | name = "Flutter Assemble";
19 | productName = FLX;
20 | };
21 | /* End PBXAggregateTarget section */
22 |
23 | /* Begin PBXBuildFile section */
24 | 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
25 | 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
26 | 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
27 | 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
28 | 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
29 | 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
30 | /* End PBXBuildFile section */
31 |
32 | /* Begin PBXContainerItemProxy section */
33 | 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = 33CC10EC2044A3C60003C045;
38 | remoteInfo = Runner;
39 | };
40 | 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = {
41 | isa = PBXContainerItemProxy;
42 | containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
43 | proxyType = 1;
44 | remoteGlobalIDString = 33CC111A2044C6BA0003C045;
45 | remoteInfo = FLX;
46 | };
47 | /* End PBXContainerItemProxy section */
48 |
49 | /* Begin PBXCopyFilesBuildPhase section */
50 | 33CC110E2044A8840003C045 /* Bundle Framework */ = {
51 | isa = PBXCopyFilesBuildPhase;
52 | buildActionMask = 2147483647;
53 | dstPath = "";
54 | dstSubfolderSpec = 10;
55 | files = (
56 | );
57 | name = "Bundle Framework";
58 | runOnlyForDeploymentPostprocessing = 0;
59 | };
60 | /* End PBXCopyFilesBuildPhase section */
61 |
62 | /* Begin PBXFileReference section */
63 | 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
64 | 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
65 | 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; };
66 | 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; };
67 | 33CC10ED2044A3C60003C045 /* dots_indicator_example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "dots_indicator_example.app"; sourceTree = BUILT_PRODUCTS_DIR; };
68 | 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
69 | 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; };
70 | 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; };
71 | 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; };
72 | 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; };
73 | 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; };
74 | 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; };
75 | 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; };
76 | 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; };
77 | 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; };
78 | 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; };
79 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; };
80 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; };
81 | /* End PBXFileReference section */
82 |
83 | /* Begin PBXFrameworksBuildPhase section */
84 | 331C80D2294CF70F00263BE5 /* Frameworks */ = {
85 | isa = PBXFrameworksBuildPhase;
86 | buildActionMask = 2147483647;
87 | files = (
88 | );
89 | runOnlyForDeploymentPostprocessing = 0;
90 | };
91 | 33CC10EA2044A3C60003C045 /* Frameworks */ = {
92 | isa = PBXFrameworksBuildPhase;
93 | buildActionMask = 2147483647;
94 | files = (
95 | );
96 | runOnlyForDeploymentPostprocessing = 0;
97 | };
98 | /* End PBXFrameworksBuildPhase section */
99 |
100 | /* Begin PBXGroup section */
101 | 331C80D6294CF71000263BE5 /* RunnerTests */ = {
102 | isa = PBXGroup;
103 | children = (
104 | 331C80D7294CF71000263BE5 /* RunnerTests.swift */,
105 | );
106 | path = RunnerTests;
107 | sourceTree = "";
108 | };
109 | 33BA886A226E78AF003329D5 /* Configs */ = {
110 | isa = PBXGroup;
111 | children = (
112 | 33E5194F232828860026EE4D /* AppInfo.xcconfig */,
113 | 9740EEB21CF90195004384FC /* Debug.xcconfig */,
114 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
115 | 333000ED22D3DE5D00554162 /* Warnings.xcconfig */,
116 | );
117 | path = Configs;
118 | sourceTree = "";
119 | };
120 | 33CC10E42044A3C60003C045 = {
121 | isa = PBXGroup;
122 | children = (
123 | 33FAB671232836740065AC1E /* Runner */,
124 | 33CEB47122A05771004F2AC0 /* Flutter */,
125 | 331C80D6294CF71000263BE5 /* RunnerTests */,
126 | 33CC10EE2044A3C60003C045 /* Products */,
127 | D73912EC22F37F3D000D13A0 /* Frameworks */,
128 | );
129 | sourceTree = "";
130 | };
131 | 33CC10EE2044A3C60003C045 /* Products */ = {
132 | isa = PBXGroup;
133 | children = (
134 | 33CC10ED2044A3C60003C045 /* dots_indicator_example.app */,
135 | 331C80D5294CF71000263BE5 /* RunnerTests.xctest */,
136 | );
137 | name = Products;
138 | sourceTree = "";
139 | };
140 | 33CC11242044D66E0003C045 /* Resources */ = {
141 | isa = PBXGroup;
142 | children = (
143 | 33CC10F22044A3C60003C045 /* Assets.xcassets */,
144 | 33CC10F42044A3C60003C045 /* MainMenu.xib */,
145 | 33CC10F72044A3C60003C045 /* Info.plist */,
146 | );
147 | name = Resources;
148 | path = ..;
149 | sourceTree = "";
150 | };
151 | 33CEB47122A05771004F2AC0 /* Flutter */ = {
152 | isa = PBXGroup;
153 | children = (
154 | 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
155 | 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
156 | 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
157 | 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,
158 | );
159 | path = Flutter;
160 | sourceTree = "";
161 | };
162 | 33FAB671232836740065AC1E /* Runner */ = {
163 | isa = PBXGroup;
164 | children = (
165 | 33CC10F02044A3C60003C045 /* AppDelegate.swift */,
166 | 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
167 | 33E51913231747F40026EE4D /* DebugProfile.entitlements */,
168 | 33E51914231749380026EE4D /* Release.entitlements */,
169 | 33CC11242044D66E0003C045 /* Resources */,
170 | 33BA886A226E78AF003329D5 /* Configs */,
171 | );
172 | path = Runner;
173 | sourceTree = "";
174 | };
175 | D73912EC22F37F3D000D13A0 /* Frameworks */ = {
176 | isa = PBXGroup;
177 | children = (
178 | );
179 | name = Frameworks;
180 | sourceTree = "";
181 | };
182 | /* End PBXGroup section */
183 |
184 | /* Begin PBXNativeTarget section */
185 | 331C80D4294CF70F00263BE5 /* RunnerTests */ = {
186 | isa = PBXNativeTarget;
187 | buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
188 | buildPhases = (
189 | 331C80D1294CF70F00263BE5 /* Sources */,
190 | 331C80D2294CF70F00263BE5 /* Frameworks */,
191 | 331C80D3294CF70F00263BE5 /* Resources */,
192 | );
193 | buildRules = (
194 | );
195 | dependencies = (
196 | 331C80DA294CF71000263BE5 /* PBXTargetDependency */,
197 | );
198 | name = RunnerTests;
199 | productName = RunnerTests;
200 | productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */;
201 | productType = "com.apple.product-type.bundle.unit-test";
202 | };
203 | 33CC10EC2044A3C60003C045 /* Runner */ = {
204 | isa = PBXNativeTarget;
205 | buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
206 | buildPhases = (
207 | 33CC10E92044A3C60003C045 /* Sources */,
208 | 33CC10EA2044A3C60003C045 /* Frameworks */,
209 | 33CC10EB2044A3C60003C045 /* Resources */,
210 | 33CC110E2044A8840003C045 /* Bundle Framework */,
211 | 3399D490228B24CF009A79C7 /* ShellScript */,
212 | );
213 | buildRules = (
214 | );
215 | dependencies = (
216 | 33CC11202044C79F0003C045 /* PBXTargetDependency */,
217 | );
218 | name = Runner;
219 | productName = Runner;
220 | productReference = 33CC10ED2044A3C60003C045 /* dots_indicator_example.app */;
221 | productType = "com.apple.product-type.application";
222 | };
223 | /* End PBXNativeTarget section */
224 |
225 | /* Begin PBXProject section */
226 | 33CC10E52044A3C60003C045 /* Project object */ = {
227 | isa = PBXProject;
228 | attributes = {
229 | BuildIndependentTargetsInParallel = YES;
230 | LastSwiftUpdateCheck = 0920;
231 | LastUpgradeCheck = 1510;
232 | ORGANIZATIONNAME = "";
233 | TargetAttributes = {
234 | 331C80D4294CF70F00263BE5 = {
235 | CreatedOnToolsVersion = 14.0;
236 | TestTargetID = 33CC10EC2044A3C60003C045;
237 | };
238 | 33CC10EC2044A3C60003C045 = {
239 | CreatedOnToolsVersion = 9.2;
240 | LastSwiftMigration = 1100;
241 | ProvisioningStyle = Automatic;
242 | SystemCapabilities = {
243 | com.apple.Sandbox = {
244 | enabled = 1;
245 | };
246 | };
247 | };
248 | 33CC111A2044C6BA0003C045 = {
249 | CreatedOnToolsVersion = 9.2;
250 | ProvisioningStyle = Manual;
251 | };
252 | };
253 | };
254 | buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */;
255 | compatibilityVersion = "Xcode 9.3";
256 | developmentRegion = en;
257 | hasScannedForEncodings = 0;
258 | knownRegions = (
259 | en,
260 | Base,
261 | );
262 | mainGroup = 33CC10E42044A3C60003C045;
263 | productRefGroup = 33CC10EE2044A3C60003C045 /* Products */;
264 | projectDirPath = "";
265 | projectRoot = "";
266 | targets = (
267 | 33CC10EC2044A3C60003C045 /* Runner */,
268 | 331C80D4294CF70F00263BE5 /* RunnerTests */,
269 | 33CC111A2044C6BA0003C045 /* Flutter Assemble */,
270 | );
271 | };
272 | /* End PBXProject section */
273 |
274 | /* Begin PBXResourcesBuildPhase section */
275 | 331C80D3294CF70F00263BE5 /* Resources */ = {
276 | isa = PBXResourcesBuildPhase;
277 | buildActionMask = 2147483647;
278 | files = (
279 | );
280 | runOnlyForDeploymentPostprocessing = 0;
281 | };
282 | 33CC10EB2044A3C60003C045 /* Resources */ = {
283 | isa = PBXResourcesBuildPhase;
284 | buildActionMask = 2147483647;
285 | files = (
286 | 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,
287 | 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,
288 | );
289 | runOnlyForDeploymentPostprocessing = 0;
290 | };
291 | /* End PBXResourcesBuildPhase section */
292 |
293 | /* Begin PBXShellScriptBuildPhase section */
294 | 3399D490228B24CF009A79C7 /* ShellScript */ = {
295 | isa = PBXShellScriptBuildPhase;
296 | alwaysOutOfDate = 1;
297 | buildActionMask = 2147483647;
298 | files = (
299 | );
300 | inputFileListPaths = (
301 | );
302 | inputPaths = (
303 | );
304 | outputFileListPaths = (
305 | );
306 | outputPaths = (
307 | );
308 | runOnlyForDeploymentPostprocessing = 0;
309 | shellPath = /bin/sh;
310 | shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n";
311 | };
312 | 33CC111E2044C6BF0003C045 /* ShellScript */ = {
313 | isa = PBXShellScriptBuildPhase;
314 | buildActionMask = 2147483647;
315 | files = (
316 | );
317 | inputFileListPaths = (
318 | Flutter/ephemeral/FlutterInputs.xcfilelist,
319 | );
320 | inputPaths = (
321 | Flutter/ephemeral/tripwire,
322 | );
323 | outputFileListPaths = (
324 | Flutter/ephemeral/FlutterOutputs.xcfilelist,
325 | );
326 | outputPaths = (
327 | );
328 | runOnlyForDeploymentPostprocessing = 0;
329 | shellPath = /bin/sh;
330 | shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
331 | };
332 | /* End PBXShellScriptBuildPhase section */
333 |
334 | /* Begin PBXSourcesBuildPhase section */
335 | 331C80D1294CF70F00263BE5 /* Sources */ = {
336 | isa = PBXSourcesBuildPhase;
337 | buildActionMask = 2147483647;
338 | files = (
339 | 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */,
340 | );
341 | runOnlyForDeploymentPostprocessing = 0;
342 | };
343 | 33CC10E92044A3C60003C045 /* Sources */ = {
344 | isa = PBXSourcesBuildPhase;
345 | buildActionMask = 2147483647;
346 | files = (
347 | 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */,
348 | 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */,
349 | 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */,
350 | );
351 | runOnlyForDeploymentPostprocessing = 0;
352 | };
353 | /* End PBXSourcesBuildPhase section */
354 |
355 | /* Begin PBXTargetDependency section */
356 | 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = {
357 | isa = PBXTargetDependency;
358 | target = 33CC10EC2044A3C60003C045 /* Runner */;
359 | targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */;
360 | };
361 | 33CC11202044C79F0003C045 /* PBXTargetDependency */ = {
362 | isa = PBXTargetDependency;
363 | target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */;
364 | targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */;
365 | };
366 | /* End PBXTargetDependency section */
367 |
368 | /* Begin PBXVariantGroup section */
369 | 33CC10F42044A3C60003C045 /* MainMenu.xib */ = {
370 | isa = PBXVariantGroup;
371 | children = (
372 | 33CC10F52044A3C60003C045 /* Base */,
373 | );
374 | name = MainMenu.xib;
375 | path = Runner;
376 | sourceTree = "";
377 | };
378 | /* End PBXVariantGroup section */
379 |
380 | /* Begin XCBuildConfiguration section */
381 | 331C80DB294CF71000263BE5 /* Debug */ = {
382 | isa = XCBuildConfiguration;
383 | buildSettings = {
384 | BUNDLE_LOADER = "$(TEST_HOST)";
385 | CURRENT_PROJECT_VERSION = 1;
386 | GENERATE_INFOPLIST_FILE = YES;
387 | MARKETING_VERSION = 1.0;
388 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample.RunnerTests;
389 | PRODUCT_NAME = "$(TARGET_NAME)";
390 | SWIFT_VERSION = 5.0;
391 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/dots_indicator_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/dots_indicator_example";
392 | };
393 | name = Debug;
394 | };
395 | 331C80DC294CF71000263BE5 /* Release */ = {
396 | isa = XCBuildConfiguration;
397 | buildSettings = {
398 | BUNDLE_LOADER = "$(TEST_HOST)";
399 | CURRENT_PROJECT_VERSION = 1;
400 | GENERATE_INFOPLIST_FILE = YES;
401 | MARKETING_VERSION = 1.0;
402 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample.RunnerTests;
403 | PRODUCT_NAME = "$(TARGET_NAME)";
404 | SWIFT_VERSION = 5.0;
405 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/dots_indicator_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/dots_indicator_example";
406 | };
407 | name = Release;
408 | };
409 | 331C80DD294CF71000263BE5 /* Profile */ = {
410 | isa = XCBuildConfiguration;
411 | buildSettings = {
412 | BUNDLE_LOADER = "$(TEST_HOST)";
413 | CURRENT_PROJECT_VERSION = 1;
414 | GENERATE_INFOPLIST_FILE = YES;
415 | MARKETING_VERSION = 1.0;
416 | PRODUCT_BUNDLE_IDENTIFIER = fr.pyozer.dotsIndicatorExample.RunnerTests;
417 | PRODUCT_NAME = "$(TARGET_NAME)";
418 | SWIFT_VERSION = 5.0;
419 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/dots_indicator_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/dots_indicator_example";
420 | };
421 | name = Profile;
422 | };
423 | 338D0CE9231458BD00FA5F75 /* Profile */ = {
424 | isa = XCBuildConfiguration;
425 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
426 | buildSettings = {
427 | ALWAYS_SEARCH_USER_PATHS = NO;
428 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
429 | CLANG_ANALYZER_NONNULL = YES;
430 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
431 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
432 | CLANG_CXX_LIBRARY = "libc++";
433 | CLANG_ENABLE_MODULES = YES;
434 | CLANG_ENABLE_OBJC_ARC = YES;
435 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
436 | CLANG_WARN_BOOL_CONVERSION = YES;
437 | CLANG_WARN_CONSTANT_CONVERSION = YES;
438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
440 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
441 | CLANG_WARN_EMPTY_BODY = YES;
442 | CLANG_WARN_ENUM_CONVERSION = YES;
443 | CLANG_WARN_INFINITE_RECURSION = YES;
444 | CLANG_WARN_INT_CONVERSION = YES;
445 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
449 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
450 | CODE_SIGN_IDENTITY = "-";
451 | COPY_PHASE_STRIP = NO;
452 | DEAD_CODE_STRIPPING = YES;
453 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
454 | ENABLE_NS_ASSERTIONS = NO;
455 | ENABLE_STRICT_OBJC_MSGSEND = YES;
456 | ENABLE_USER_SCRIPT_SANDBOXING = NO;
457 | GCC_C_LANGUAGE_STANDARD = gnu11;
458 | GCC_NO_COMMON_BLOCKS = YES;
459 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
460 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
461 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
462 | GCC_WARN_UNUSED_FUNCTION = YES;
463 | GCC_WARN_UNUSED_VARIABLE = YES;
464 | MACOSX_DEPLOYMENT_TARGET = 10.14;
465 | MTL_ENABLE_DEBUG_INFO = NO;
466 | SDKROOT = macosx;
467 | SWIFT_COMPILATION_MODE = wholemodule;
468 | SWIFT_OPTIMIZATION_LEVEL = "-O";
469 | };
470 | name = Profile;
471 | };
472 | 338D0CEA231458BD00FA5F75 /* Profile */ = {
473 | isa = XCBuildConfiguration;
474 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
475 | buildSettings = {
476 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
477 | CLANG_ENABLE_MODULES = YES;
478 | CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
479 | CODE_SIGN_STYLE = Automatic;
480 | COMBINE_HIDPI_IMAGES = YES;
481 | INFOPLIST_FILE = Runner/Info.plist;
482 | LD_RUNPATH_SEARCH_PATHS = (
483 | "$(inherited)",
484 | "@executable_path/../Frameworks",
485 | );
486 | PROVISIONING_PROFILE_SPECIFIER = "";
487 | SWIFT_VERSION = 5.0;
488 | };
489 | name = Profile;
490 | };
491 | 338D0CEB231458BD00FA5F75 /* Profile */ = {
492 | isa = XCBuildConfiguration;
493 | buildSettings = {
494 | CODE_SIGN_STYLE = Manual;
495 | PRODUCT_NAME = "$(TARGET_NAME)";
496 | };
497 | name = Profile;
498 | };
499 | 33CC10F92044A3C60003C045 /* Debug */ = {
500 | isa = XCBuildConfiguration;
501 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
502 | buildSettings = {
503 | ALWAYS_SEARCH_USER_PATHS = NO;
504 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
505 | CLANG_ANALYZER_NONNULL = YES;
506 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
507 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
508 | CLANG_CXX_LIBRARY = "libc++";
509 | CLANG_ENABLE_MODULES = YES;
510 | CLANG_ENABLE_OBJC_ARC = YES;
511 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
512 | CLANG_WARN_BOOL_CONVERSION = YES;
513 | CLANG_WARN_CONSTANT_CONVERSION = YES;
514 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
515 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
516 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
517 | CLANG_WARN_EMPTY_BODY = YES;
518 | CLANG_WARN_ENUM_CONVERSION = YES;
519 | CLANG_WARN_INFINITE_RECURSION = YES;
520 | CLANG_WARN_INT_CONVERSION = YES;
521 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
522 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
523 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
524 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
525 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
526 | CODE_SIGN_IDENTITY = "-";
527 | COPY_PHASE_STRIP = NO;
528 | DEAD_CODE_STRIPPING = YES;
529 | DEBUG_INFORMATION_FORMAT = dwarf;
530 | ENABLE_STRICT_OBJC_MSGSEND = YES;
531 | ENABLE_TESTABILITY = YES;
532 | ENABLE_USER_SCRIPT_SANDBOXING = NO;
533 | GCC_C_LANGUAGE_STANDARD = gnu11;
534 | GCC_DYNAMIC_NO_PIC = NO;
535 | GCC_NO_COMMON_BLOCKS = YES;
536 | GCC_OPTIMIZATION_LEVEL = 0;
537 | GCC_PREPROCESSOR_DEFINITIONS = (
538 | "DEBUG=1",
539 | "$(inherited)",
540 | );
541 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
542 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
543 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
544 | GCC_WARN_UNUSED_FUNCTION = YES;
545 | GCC_WARN_UNUSED_VARIABLE = YES;
546 | MACOSX_DEPLOYMENT_TARGET = 10.14;
547 | MTL_ENABLE_DEBUG_INFO = YES;
548 | ONLY_ACTIVE_ARCH = YES;
549 | SDKROOT = macosx;
550 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
551 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
552 | };
553 | name = Debug;
554 | };
555 | 33CC10FA2044A3C60003C045 /* Release */ = {
556 | isa = XCBuildConfiguration;
557 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
558 | buildSettings = {
559 | ALWAYS_SEARCH_USER_PATHS = NO;
560 | ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
561 | CLANG_ANALYZER_NONNULL = YES;
562 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
563 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
564 | CLANG_CXX_LIBRARY = "libc++";
565 | CLANG_ENABLE_MODULES = YES;
566 | CLANG_ENABLE_OBJC_ARC = YES;
567 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
568 | CLANG_WARN_BOOL_CONVERSION = YES;
569 | CLANG_WARN_CONSTANT_CONVERSION = YES;
570 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
571 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
572 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
573 | CLANG_WARN_EMPTY_BODY = YES;
574 | CLANG_WARN_ENUM_CONVERSION = YES;
575 | CLANG_WARN_INFINITE_RECURSION = YES;
576 | CLANG_WARN_INT_CONVERSION = YES;
577 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
578 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
579 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
580 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
581 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
582 | CODE_SIGN_IDENTITY = "-";
583 | COPY_PHASE_STRIP = NO;
584 | DEAD_CODE_STRIPPING = YES;
585 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
586 | ENABLE_NS_ASSERTIONS = NO;
587 | ENABLE_STRICT_OBJC_MSGSEND = YES;
588 | ENABLE_USER_SCRIPT_SANDBOXING = NO;
589 | GCC_C_LANGUAGE_STANDARD = gnu11;
590 | GCC_NO_COMMON_BLOCKS = YES;
591 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
592 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
593 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
594 | GCC_WARN_UNUSED_FUNCTION = YES;
595 | GCC_WARN_UNUSED_VARIABLE = YES;
596 | MACOSX_DEPLOYMENT_TARGET = 10.14;
597 | MTL_ENABLE_DEBUG_INFO = NO;
598 | SDKROOT = macosx;
599 | SWIFT_COMPILATION_MODE = wholemodule;
600 | SWIFT_OPTIMIZATION_LEVEL = "-O";
601 | };
602 | name = Release;
603 | };
604 | 33CC10FC2044A3C60003C045 /* Debug */ = {
605 | isa = XCBuildConfiguration;
606 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
607 | buildSettings = {
608 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
609 | CLANG_ENABLE_MODULES = YES;
610 | CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
611 | CODE_SIGN_STYLE = Automatic;
612 | COMBINE_HIDPI_IMAGES = YES;
613 | INFOPLIST_FILE = Runner/Info.plist;
614 | LD_RUNPATH_SEARCH_PATHS = (
615 | "$(inherited)",
616 | "@executable_path/../Frameworks",
617 | );
618 | PROVISIONING_PROFILE_SPECIFIER = "";
619 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
620 | SWIFT_VERSION = 5.0;
621 | };
622 | name = Debug;
623 | };
624 | 33CC10FD2044A3C60003C045 /* Release */ = {
625 | isa = XCBuildConfiguration;
626 | baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
627 | buildSettings = {
628 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
629 | CLANG_ENABLE_MODULES = YES;
630 | CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
631 | CODE_SIGN_STYLE = Automatic;
632 | COMBINE_HIDPI_IMAGES = YES;
633 | INFOPLIST_FILE = Runner/Info.plist;
634 | LD_RUNPATH_SEARCH_PATHS = (
635 | "$(inherited)",
636 | "@executable_path/../Frameworks",
637 | );
638 | PROVISIONING_PROFILE_SPECIFIER = "";
639 | SWIFT_VERSION = 5.0;
640 | };
641 | name = Release;
642 | };
643 | 33CC111C2044C6BA0003C045 /* Debug */ = {
644 | isa = XCBuildConfiguration;
645 | buildSettings = {
646 | CODE_SIGN_STYLE = Manual;
647 | PRODUCT_NAME = "$(TARGET_NAME)";
648 | };
649 | name = Debug;
650 | };
651 | 33CC111D2044C6BA0003C045 /* Release */ = {
652 | isa = XCBuildConfiguration;
653 | buildSettings = {
654 | CODE_SIGN_STYLE = Automatic;
655 | PRODUCT_NAME = "$(TARGET_NAME)";
656 | };
657 | name = Release;
658 | };
659 | /* End XCBuildConfiguration section */
660 |
661 | /* Begin XCConfigurationList section */
662 | 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
663 | isa = XCConfigurationList;
664 | buildConfigurations = (
665 | 331C80DB294CF71000263BE5 /* Debug */,
666 | 331C80DC294CF71000263BE5 /* Release */,
667 | 331C80DD294CF71000263BE5 /* Profile */,
668 | );
669 | defaultConfigurationIsVisible = 0;
670 | defaultConfigurationName = Release;
671 | };
672 | 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = {
673 | isa = XCConfigurationList;
674 | buildConfigurations = (
675 | 33CC10F92044A3C60003C045 /* Debug */,
676 | 33CC10FA2044A3C60003C045 /* Release */,
677 | 338D0CE9231458BD00FA5F75 /* Profile */,
678 | );
679 | defaultConfigurationIsVisible = 0;
680 | defaultConfigurationName = Release;
681 | };
682 | 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = {
683 | isa = XCConfigurationList;
684 | buildConfigurations = (
685 | 33CC10FC2044A3C60003C045 /* Debug */,
686 | 33CC10FD2044A3C60003C045 /* Release */,
687 | 338D0CEA231458BD00FA5F75 /* Profile */,
688 | );
689 | defaultConfigurationIsVisible = 0;
690 | defaultConfigurationName = Release;
691 | };
692 | 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = {
693 | isa = XCConfigurationList;
694 | buildConfigurations = (
695 | 33CC111C2044C6BA0003C045 /* Debug */,
696 | 33CC111D2044C6BA0003C045 /* Release */,
697 | 338D0CEB231458BD00FA5F75 /* Profile */,
698 | );
699 | defaultConfigurationIsVisible = 0;
700 | defaultConfigurationName = Release;
701 | };
702 | /* End XCConfigurationList section */
703 | };
704 | rootObject = 33CC10E52044A3C60003C045 /* Project object */;
705 | }
706 |
--------------------------------------------------------------------------------