Daniel Porteous (dport)

Results 264 comments of Daniel Porteous (dport)

I've noticed this happening in GitHub Actions, but notably on a variety of different runners, workflows, etc. You'll see in the original error btw that the commit of the repo...

> One thing to investigate is that it appears https://github.com/aptos-labs/aptos-indexer-processors.git is specified with three different commit revs Where can you see that? I can try fix that to reduce the...

Oh I see what you mean. Unfortunately this is intentional, we have something of a... complicated versioning scheme at the moment.

I believe this orphan has been this way for quite a while, so it seems strange that at this point it'd be in this partially available state. I guess some...

Hey so very late response here but I'm finding that what you suggest doesn't work @M-ixai-L. First I get the themeData: ``` final themeData = Theme.of(context); ``` However there is...

I think this proposal makes a lot of sense, thoughts @0xmaayan?

Here's a null safe version: ``` import 'dart:io'; import 'dart:ui'; import 'package:device_info/device_info.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:integration_test/integration_test.dart'; import 'package:integration_test/src/channel.dart'; Future takeScreenshotForAndroid( IntegrationTestWidgetsFlutterBinding binding, String name) async {...

I agree this would be an awesome usability win instead of having to `.context("Field unexpectedly asbent")?` on every field.

This fixes https://github.com/tinrab/rusty-chat/issues/25, awesome!

Hi, did you ever come up with a solution to getting a service that is both Clone + Sync? I'm trying to do this: ``` SyncWrapper::new(tower::util::BoxCloneService::new(tower_service)) ``` But I still...