├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutter_cupertino_settings_example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── 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 │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── lib │ └── main.dart ├── pubspec.yaml └── test │ └── widget_test.dart ├── flutter_cupertino_settings.iml ├── lib ├── flutter_cupertino_settings.dart └── widgets │ ├── button.dart │ ├── control.dart │ ├── description.dart │ ├── header.dart │ ├── link.dart │ ├── secret.dart │ ├── selection.dart │ ├── spacer.dart │ └── widget.dart ├── pubspec.yaml ├── readme.md └── screenshots └── scr1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/LICENSE -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/flutter_cupertino_settings_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/app/src/main/kotlin/com/example/flutter_cupertino_settings_example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/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/matthinc/flutter_cupertino_settings/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/matthinc/flutter_cupertino_settings/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/matthinc/flutter_cupertino_settings/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/matthinc/flutter_cupertino_settings/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /flutter_cupertino_settings.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/flutter_cupertino_settings.iml -------------------------------------------------------------------------------- /lib/flutter_cupertino_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/flutter_cupertino_settings.dart -------------------------------------------------------------------------------- /lib/widgets/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/button.dart -------------------------------------------------------------------------------- /lib/widgets/control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/control.dart -------------------------------------------------------------------------------- /lib/widgets/description.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/description.dart -------------------------------------------------------------------------------- /lib/widgets/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/header.dart -------------------------------------------------------------------------------- /lib/widgets/link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/link.dart -------------------------------------------------------------------------------- /lib/widgets/secret.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/secret.dart -------------------------------------------------------------------------------- /lib/widgets/selection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/selection.dart -------------------------------------------------------------------------------- /lib/widgets/spacer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/spacer.dart -------------------------------------------------------------------------------- /lib/widgets/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/lib/widgets/widget.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/readme.md -------------------------------------------------------------------------------- /screenshots/scr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthinc/flutter_cupertino_settings/HEAD/screenshots/scr1.png --------------------------------------------------------------------------------