Thomas Amundsen

Results 8 comments of Thomas Amundsen

I managed to work around this by adding a protocol for hiding the `pagingControllers` until the `defaultPage` controller was done loading and being shown on screen. This (partly) works, but...

This seemed to be a life cycle issue. Calling the setup of the `PagingMenuController` instance below super's `viewDidLoad` rather than super's `viewWillAppear` fixed this issue.

I got the same on a Samsung Galaxy S4 Mini running version 4.4.2 (KitKat). Everything works fine except that it's a quadratic reveal instead of a circular reveal. On the...

It appears to work as `pod install` succeeds, but then `flutter build ios` fails due to this error: ``` fatal error: 'qr_code_scanner/qr_code_scanner-Swift.h' file not found ``` It appears this pod...

Did you learn anything during the weekend, @m-zaink? 😄 Just tell me if you need something more from me. We are very eager to get this out on iOS, as...

I am able to get this working on iOS now with this `pubspec.yaml` configuration: ``` card_scanner: git: url: https://github.com/DeadBryam/card-scanner-flutter ref: fix-static-framework ``` Thanks to this fix: #17 PS: Though I...

When trying to build for production I yet again faced some issues. Thus what I said over here ☝️ does not do the trick after all 😞 ``` Undefined symbols...

I am trying to achieve the same thing. For now I just do an `/api/` request and read the session from there. Normally I handle authentication in `getServerSideProps`, but I...