├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── doc └── api │ ├── __404error.html │ ├── categories.json │ ├── index.html │ ├── index.json │ ├── rx_command │ ├── Action.html │ ├── Action1.html │ ├── AsyncAction.html │ ├── AsyncAction1.html │ ├── AsyncFunc.html │ ├── AsyncFunc1.html │ ├── CommandResult-class.html │ ├── CommandResult │ │ ├── CommandResult.html │ │ ├── data.html │ │ ├── error.html │ │ ├── hasData.html │ │ ├── hasError.html │ │ ├── hashCode.html │ │ ├── isExecuting.html │ │ ├── noSuchMethod.html │ │ ├── operator_equals.html │ │ ├── runtimeType.html │ │ └── toString.html │ ├── Func.html │ ├── Func1.html │ ├── MockCommand-class.html │ ├── MockCommand │ │ ├── MockCommand.html │ │ ├── endExecutionNoData.html │ │ ├── endExecutionWithData.html │ │ ├── endExecutionWithError.html │ │ ├── execute.html │ │ ├── executionCount.html │ │ ├── lastPassedValueToExecute.html │ │ ├── queueResultsForNextExecuteCall.html │ │ ├── returnValuesForNextExecute.html │ │ ├── startExecution.html │ │ └── subject.html │ ├── RxCommand-class.html │ ├── RxCommand │ │ ├── RxCommand.html │ │ ├── any.html │ │ ├── asBroadcastStream.html │ │ ├── asyncExpand.html │ │ ├── asyncMap.html │ │ ├── buffer.html │ │ ├── bufferCount.html │ │ ├── bufferFuture.html │ │ ├── bufferTest.html │ │ ├── bufferTime.html │ │ ├── bufferWhen.html │ │ ├── bufferWithCount.html │ │ ├── call.html │ │ ├── canExecute.html │ │ ├── cast.html │ │ ├── concatMap.html │ │ ├── concatWith.html │ │ ├── contains.html │ │ ├── createAsync.html │ │ ├── createAsync1.html │ │ ├── createAsync2.html │ │ ├── createAsync3.html │ │ ├── createAsyncNoParam.html │ │ ├── createAsyncNoParamNoResult.html │ │ ├── createAsyncNoResult.html │ │ ├── createFromStream.html │ │ ├── createSync.html │ │ ├── createSync1.html │ │ ├── createSync2.html │ │ ├── createSync3.html │ │ ├── createSyncNoParam.html │ │ ├── createSyncNoParamNoResult.html │ │ ├── createSyncNoResult.html │ │ ├── debounce.html │ │ ├── debounceTime.html │ │ ├── defaultIfEmpty.html │ │ ├── delay.html │ │ ├── dematerialize.html │ │ ├── dispose.html │ │ ├── distinct.html │ │ ├── distinctUnique.html │ │ ├── doOnCancel.html │ │ ├── doOnData.html │ │ ├── doOnDone.html │ │ ├── doOnEach.html │ │ ├── doOnError.html │ │ ├── doOnListen.html │ │ ├── doOnPause.html │ │ ├── doOnResume.html │ │ ├── drain.html │ │ ├── elementAt.html │ │ ├── every.html │ │ ├── execute.html │ │ ├── exhaustMap.html │ │ ├── expand.html │ │ ├── first.html │ │ ├── firstWhere.html │ │ ├── flatMap.html │ │ ├── flatMapIterable.html │ │ ├── flatMapLatest.html │ │ ├── fold.html │ │ ├── forEach.html │ │ ├── groupBy.html │ │ ├── handleError.html │ │ ├── hashCode.html │ │ ├── ignoreElements.html │ │ ├── interval.html │ │ ├── isBroadcast.html │ │ ├── isEmpty.html │ │ ├── isExecuting.html │ │ ├── join.html │ │ ├── last.html │ │ ├── lastResult.html │ │ ├── lastWhere.html │ │ ├── length.html │ │ ├── listen.html │ │ ├── map.html │ │ ├── mapTo.html │ │ ├── materialize.html │ │ ├── max.html │ │ ├── mergeWith.html │ │ ├── min.html │ │ ├── next.html │ │ ├── noSuchMethod.html │ │ ├── ofType.html │ │ ├── onErrorResume.html │ │ ├── onErrorResumeNext.html │ │ ├── onErrorReturn.html │ │ ├── onErrorReturnWith.html │ │ ├── operator_equals.html │ │ ├── pairwise.html │ │ ├── pipe.html │ │ ├── publish.html │ │ ├── publishReplay.html │ │ ├── publishValue.html │ │ ├── publishValueSeeded.html │ │ ├── reduce.html │ │ ├── repeat.html │ │ ├── results.html │ │ ├── retype.html │ │ ├── runtimeType.html │ │ ├── sample.html │ │ ├── sampleTime.html │ │ ├── scan.html │ │ ├── share.html │ │ ├── shareReplay.html │ │ ├── shareValue.html │ │ ├── shareValueSeeded.html │ │ ├── single.html │ │ ├── singleWhere.html │ │ ├── skip.html │ │ ├── skipUntil.html │ │ ├── skipWhile.html │ │ ├── startWith.html │ │ ├── startWithMany.html │ │ ├── stream.html │ │ ├── switchIfEmpty.html │ │ ├── switchMap.html │ │ ├── take.html │ │ ├── takeUntil.html │ │ ├── takeWhile.html │ │ ├── throttle.html │ │ ├── throttleTime.html │ │ ├── throwExceptions.html │ │ ├── thrownExceptions.html │ │ ├── timeInterval.html │ │ ├── timeout.html │ │ ├── timestamp.html │ │ ├── toList.html │ │ ├── toSet.html │ │ ├── toString.html │ │ ├── transform.html │ │ ├── where.html │ │ ├── window.html │ │ ├── windowCount.html │ │ ├── windowFuture.html │ │ ├── windowTest.html │ │ ├── windowTime.html │ │ ├── windowWhen.html │ │ ├── windowWithCount.html │ │ ├── withLatestFrom.html │ │ └── zipWith.html │ ├── RxCommandAsync-class.html │ ├── RxCommandAsync │ │ ├── RxCommandAsync.html │ │ └── execute.html │ ├── RxCommandStream-class.html │ ├── RxCommandStream │ │ ├── RxCommandStream.html │ │ └── execute.html │ ├── RxCommandSync-class.html │ ├── RxCommandSync │ │ ├── RxCommandSync.html │ │ └── execute.html │ ├── StreamProvider.html │ └── rx_command-library.html │ ├── rx_command_listener │ ├── RxCommandListener-class.html │ ├── RxCommandListener │ │ ├── RxCommandListener.html │ │ ├── busyChangeSubscription.html │ │ ├── busySubscription.html │ │ ├── canExecuteStateSubscription.html │ │ ├── command.html │ │ ├── debounceDuration.html │ │ ├── dispose.html │ │ ├── errorSubscription.html │ │ ├── hashCode.html │ │ ├── noSuchMethod.html │ │ ├── onCanExecuteChange.html │ │ ├── onError.html │ │ ├── onIsBusy.html │ │ ├── onIsBusyChange.html │ │ ├── onNotBusy.html │ │ ├── onResult.html │ │ ├── onValue.html │ │ ├── operator_equals.html │ │ ├── resultsSubscription.html │ │ ├── runtimeType.html │ │ ├── toString.html │ │ └── valueSubscription.html │ └── rx_command_listener-library.html │ └── static-assets │ ├── URI.js │ ├── css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css │ ├── favicon.png │ ├── github.css │ ├── highlight.pack.js │ ├── play_button.svg │ ├── readme.md │ ├── script.js │ ├── sdk_footer_text.html │ ├── styles.css │ └── typeahead.bundle.min.js ├── example ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── flutterweatherdemo │ │ │ │ │ └── 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.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── 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-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── homepage.dart │ ├── json │ │ └── weather_in_cities.dart │ ├── listview.dart │ ├── main.dart │ └── weather_viewmodel.dart ├── pubspec.lock └── pubspec.yaml ├── ios └── Runner │ ├── GeneratedPluginRegistrant.h │ └── GeneratedPluginRegistrant.m ├── lib ├── rx_command.dart └── rx_command_listener.dart ├── makedoc.bat ├── pubspec.lock ├── pubspec.yaml └── test └── rx_command_test.dart /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /doc/api/__404error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/__404error.html -------------------------------------------------------------------------------- /doc/api/categories.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/index.html -------------------------------------------------------------------------------- /doc/api/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/index.json -------------------------------------------------------------------------------- /doc/api/rx_command/Action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/Action.html -------------------------------------------------------------------------------- /doc/api/rx_command/Action1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/Action1.html -------------------------------------------------------------------------------- /doc/api/rx_command/AsyncAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/AsyncAction.html -------------------------------------------------------------------------------- /doc/api/rx_command/AsyncAction1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/AsyncAction1.html -------------------------------------------------------------------------------- /doc/api/rx_command/AsyncFunc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/AsyncFunc.html -------------------------------------------------------------------------------- /doc/api/rx_command/AsyncFunc1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/AsyncFunc1.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult-class.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/CommandResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/CommandResult.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/data.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/error.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/hasData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/hasData.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/hasError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/hasError.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/hashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/hashCode.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/isExecuting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/isExecuting.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/noSuchMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/noSuchMethod.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/operator_equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/operator_equals.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/runtimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/runtimeType.html -------------------------------------------------------------------------------- /doc/api/rx_command/CommandResult/toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/CommandResult/toString.html -------------------------------------------------------------------------------- /doc/api/rx_command/Func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/Func.html -------------------------------------------------------------------------------- /doc/api/rx_command/Func1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/Func1.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand-class.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/MockCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/MockCommand.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/endExecutionNoData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/endExecutionNoData.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/endExecutionWithData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/endExecutionWithData.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/endExecutionWithError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/endExecutionWithError.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/execute.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/executionCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/executionCount.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/lastPassedValueToExecute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/lastPassedValueToExecute.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/queueResultsForNextExecuteCall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/queueResultsForNextExecuteCall.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/returnValuesForNextExecute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/returnValuesForNextExecute.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/startExecution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/startExecution.html -------------------------------------------------------------------------------- /doc/api/rx_command/MockCommand/subject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/MockCommand/subject.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand-class.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/RxCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/RxCommand.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/any.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/any.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/asBroadcastStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/asBroadcastStream.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/asyncExpand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/asyncExpand.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/asyncMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/asyncMap.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/buffer.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/bufferCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/bufferCount.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/bufferFuture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/bufferFuture.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/bufferTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/bufferTest.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/bufferTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/bufferTime.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/bufferWhen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/bufferWhen.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/bufferWithCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/bufferWithCount.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/call.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/call.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/canExecute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/canExecute.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/cast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/cast.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/concatMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/concatMap.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/concatWith.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/concatWith.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/contains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/contains.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createAsync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createAsync.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createAsync1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createAsync1.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createAsync2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createAsync2.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createAsync3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createAsync3.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createAsyncNoParam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createAsyncNoParam.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createAsyncNoParamNoResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createAsyncNoParamNoResult.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createAsyncNoResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createAsyncNoResult.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createFromStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createFromStream.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createSync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createSync.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createSync1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createSync1.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createSync2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createSync2.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createSync3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createSync3.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createSyncNoParam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createSyncNoParam.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createSyncNoParamNoResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createSyncNoParamNoResult.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/createSyncNoResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/createSyncNoResult.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/debounce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/debounce.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/debounceTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/debounceTime.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/defaultIfEmpty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/defaultIfEmpty.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/delay.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/dematerialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/dematerialize.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/dispose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/dispose.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/distinct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/distinct.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/distinctUnique.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/distinctUnique.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnCancel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnCancel.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnData.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnDone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnDone.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnEach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnEach.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnError.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnListen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnListen.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnPause.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnPause.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/doOnResume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/doOnResume.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/drain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/drain.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/elementAt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/elementAt.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/every.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/every.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/execute.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/exhaustMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/exhaustMap.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/expand.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/first.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/first.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/firstWhere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/firstWhere.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/flatMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/flatMap.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/flatMapIterable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/flatMapIterable.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/flatMapLatest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/flatMapLatest.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/fold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/fold.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/forEach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/forEach.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/groupBy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/groupBy.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/handleError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/handleError.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/hashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/hashCode.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/ignoreElements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/ignoreElements.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/interval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/interval.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/isBroadcast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/isBroadcast.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/isEmpty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/isEmpty.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/isExecuting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/isExecuting.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/join.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/last.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/last.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/lastResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/lastResult.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/lastWhere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/lastWhere.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/length.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/length.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/listen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/listen.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/map.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/mapTo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/mapTo.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/materialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/materialize.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/max.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/mergeWith.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/mergeWith.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/min.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/next.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/noSuchMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/noSuchMethod.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/ofType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/ofType.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/onErrorResume.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/onErrorResume.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/onErrorResumeNext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/onErrorResumeNext.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/onErrorReturn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/onErrorReturn.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/onErrorReturnWith.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/onErrorReturnWith.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/operator_equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/operator_equals.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/pairwise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/pairwise.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/pipe.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/publish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/publish.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/publishReplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/publishReplay.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/publishValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/publishValue.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/publishValueSeeded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/publishValueSeeded.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/reduce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/reduce.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/repeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/repeat.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/results.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/retype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/retype.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/runtimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/runtimeType.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/sample.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/sampleTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/sampleTime.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/scan.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/share.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/shareReplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/shareReplay.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/shareValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/shareValue.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/shareValueSeeded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/shareValueSeeded.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/single.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/singleWhere.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/singleWhere.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/skip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/skip.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/skipUntil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/skipUntil.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/skipWhile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/skipWhile.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/startWith.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/startWith.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/startWithMany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/startWithMany.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/stream.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/switchIfEmpty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/switchIfEmpty.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/switchMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/switchMap.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/take.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/take.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/takeUntil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/takeUntil.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/takeWhile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/takeWhile.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/throttle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/throttle.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/throttleTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/throttleTime.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/throwExceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/throwExceptions.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/thrownExceptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/thrownExceptions.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/timeInterval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/timeInterval.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/timeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/timeout.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/timestamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/timestamp.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/toList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/toList.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/toSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/toSet.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/toString.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/transform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/transform.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/where.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/where.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/window.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/windowCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/windowCount.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/windowFuture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/windowFuture.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/windowTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/windowTest.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/windowTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/windowTime.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/windowWhen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/windowWhen.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/windowWithCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/windowWithCount.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/withLatestFrom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/withLatestFrom.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommand/zipWith.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommand/zipWith.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandAsync-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandAsync-class.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandAsync/RxCommandAsync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandAsync/RxCommandAsync.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandAsync/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandAsync/execute.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandStream-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandStream-class.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandStream/RxCommandStream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandStream/RxCommandStream.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandStream/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandStream/execute.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandSync-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandSync-class.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandSync/RxCommandSync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandSync/RxCommandSync.html -------------------------------------------------------------------------------- /doc/api/rx_command/RxCommandSync/execute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/RxCommandSync/execute.html -------------------------------------------------------------------------------- /doc/api/rx_command/StreamProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/StreamProvider.html -------------------------------------------------------------------------------- /doc/api/rx_command/rx_command-library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command/rx_command-library.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener-class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener-class.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/RxCommandListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/RxCommandListener.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/busyChangeSubscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/busyChangeSubscription.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/busySubscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/busySubscription.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/canExecuteStateSubscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/canExecuteStateSubscription.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/command.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/debounceDuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/debounceDuration.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/dispose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/dispose.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/errorSubscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/errorSubscription.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/hashCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/hashCode.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/noSuchMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/noSuchMethod.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/onCanExecuteChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/onCanExecuteChange.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/onError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/onError.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/onIsBusy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/onIsBusy.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/onIsBusyChange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/onIsBusyChange.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/onNotBusy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/onNotBusy.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/onResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/onResult.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/onValue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/onValue.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/operator_equals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/operator_equals.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/resultsSubscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/resultsSubscription.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/runtimeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/runtimeType.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/toString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/toString.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/RxCommandListener/valueSubscription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/RxCommandListener/valueSubscription.html -------------------------------------------------------------------------------- /doc/api/rx_command_listener/rx_command_listener-library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/rx_command_listener/rx_command_listener-library.html -------------------------------------------------------------------------------- /doc/api/static-assets/URI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/URI.js -------------------------------------------------------------------------------- /doc/api/static-assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/css/bootstrap.css -------------------------------------------------------------------------------- /doc/api/static-assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /doc/api/static-assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /doc/api/static-assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/favicon.png -------------------------------------------------------------------------------- /doc/api/static-assets/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/github.css -------------------------------------------------------------------------------- /doc/api/static-assets/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/highlight.pack.js -------------------------------------------------------------------------------- /doc/api/static-assets/play_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/play_button.svg -------------------------------------------------------------------------------- /doc/api/static-assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/readme.md -------------------------------------------------------------------------------- /doc/api/static-assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/script.js -------------------------------------------------------------------------------- /doc/api/static-assets/sdk_footer_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/sdk_footer_text.html -------------------------------------------------------------------------------- /doc/api/static-assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/styles.css -------------------------------------------------------------------------------- /doc/api/static-assets/typeahead.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/doc/api/static-assets/typeahead.bundle.min.js -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/flutterweatherdemo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/app/src/main/kotlin/com/example/flutterweatherdemo/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/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/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/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/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/homepage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/lib/homepage.dart -------------------------------------------------------------------------------- /example/lib/json/weather_in_cities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/lib/json/weather_in_cities.dart -------------------------------------------------------------------------------- /example/lib/listview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/lib/listview.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/weather_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/lib/weather_viewmodel.dart -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/ios/Runner/GeneratedPluginRegistrant.h -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/ios/Runner/GeneratedPluginRegistrant.m -------------------------------------------------------------------------------- /lib/rx_command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/lib/rx_command.dart -------------------------------------------------------------------------------- /lib/rx_command_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/lib/rx_command_listener.dart -------------------------------------------------------------------------------- /makedoc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/makedoc.bat -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/rx_command_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluttercommunity/rx_command/HEAD/test/rx_command_test.dart --------------------------------------------------------------------------------