PS C:\Entwicklung\Projects\Aaronia\trunk\Sources\RTSAMobileDev\aartos> flutter run -d windows -v [ +26 ms] executing: [C:\Entwicklung\Flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +61 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ ] ec1044a8773e31b4630bf162d9c374236ad1eaaf [ ] executing: [C:\Entwicklung\Flutter/] git describe --match v*.. --first-parent --long --tags [ +84 ms] Exit code 0 from: git describe --match v*.. --first-parent --long --tags [ ] v1.14.1-51-gec1044a877 [ +7 ms] executing: [C:\Entwicklung\Flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +39 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/master
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let withdrawWithAudit = withdraw |> auditAs "withdraw" Auditing.fileSystem | |
| let depositWithAudit = deposit |> auditAs "deposit" Auditing.fileSystem | |
| while true do | |
| let action = | |
| Console.WriteLine() | |
| printfn "Current balance is £%M" account.Balance | |
| Console.Write "(d)eposit, (w)ithdraw or e(x)it: " | |
| Console.ReadLine() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // return Column( | |
| // mainAxisSize: MainAxisSize.min, | |
| // children: <Widget>[ | |
| // Container( | |
| // height: 50.0, | |
| // color: Colors.red, | |
| // ), | |
| // Row( | |
| // crossAxisAlignment: CrossAxisAlignment.start, | |
| // children: <Widget>[ |
Hi, I have the problem that a Test that is used in the demo of rx_widgets longer works:
test('should filter after the user stops typing for 500ms', () async {
// Use FakeAsync from the Quiver package to simulate time
new FakeAsync().run((time) {
final service = new MockService();
final model = new HomePageModel(service);
when(service.getWeatherEntriesForCity(any))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| GetIt supports since recently a mechanic to make initialization of registered | |
| Instances easier. | |
| The idea is that you can mark Singletons/LazySingletons that they will signal | |
| when they are ready. | |
| You then can wait for either that all are ready or that one of them is ready or | |
| trigger the readyFuture manually | |
| In case of a timeout you get detailed debug information. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:async'; | |
| import 'dart:io'; | |
| import 'dart:ui' as ui show window; | |
| import 'package:connectivity/connectivity.dart'; | |
| import 'package:device_info/device_info.dart'; | |
| import 'package:flutter/foundation.dart'; | |
| import 'package:flutter/widgets.dart'; | |
| import 'package:package_info/package_info.dart'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class _MyHomePageState extends State<MyHomePage> | |
| with SingleTickerProviderStateMixin { | |
| TabController _tabController; | |
| FocusScopeNode _node = FocusScopeNode(); /// <----------------- | |
| @override | |
| void initState() { | |
| _tabController = TabController(length: 3, vsync: this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RxCommandListener<ImageStorageRequest, ImageLocation> selectImageListener; | |
| RxCommandListener<ChatEntry, void> deleteChatEntryListener; | |
| @override | |
| void initState() { | |
| super.initState(); | |
| selectImageListener = RxCommandListener( | |
| command: sl.get<ImageManager>().selectAndUploadImageCommand, | |
| onValue: (imageLocation) async { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MyInheritedWidget.of(context).myProperty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// | |
| /// Flutter Captured Error Reporting | |
| /// Created by Simon Lightfoot | |
| /// | |
| /// Copyright (C) DevAngels Limited 2018 | |
| /// License: APACHE 2.0 - https://www.apache.org/licenses/LICENSE-2.0 | |
| /// | |
| import 'dart:async'; | |
| import 'dart:io'; | |
| import 'dart:ui' as ui show window; |