Advertisement · 728 × 90

Posts by Jonas Uekötter

The watermark is shown when screenshots are sent by users, thus recipients can easily search for the app

9 months ago 2 0 0 0

True, but the element is also not meant to be seen or interacted with during app usage. It's only meant to be seen on screenshots 😅

9 months ago 0 0 1 0

Why?

9 months ago 0 0 1 0
Video

Did you know you can hide things behind the dynamic island? This can be used to show easter eggs or your app name behind it that only shows up in screenshots. Super useful for growth hacking or debugging. If you use it, please show me what you used it for!

9 months ago 2 0 1 0

Shouldn't it default to `numberOfProcessors - 1` since one isolate is the one running and thus can't be used for other computations?

1 year ago 1 0 1 0

New job announcement: I'll start as a mobile dev at Wolt. For my North American followers; Wolt belongs to DoorDash and is in the food and grocery delivery business

1 year ago 16 0 1 0
Post image

New Flutter hotfix just dropped

1 year ago 4 0 0 0

Virtually every app also depends on the *_plus packages and a surprising amount of apps also doesn't have any kind of error monitoring integrated. That's kinda wild to me.

1 year ago 3 0 1 0
Advertisement

It's fascinating seeing what dependencies Flutter apps use via Flutter Shark app. Superlist for example uses native_dio_client and http_image_provider which are packages that I wrote. They also use dio and sentry_flutter, which contain a lot of code that I wrote.

1 year ago 10 0 1 0

The current indicator for an app using Flutter is that it's not 120hz on my Nothing phone ☹️

1 year ago 0 0 0 0
Preview
Finanzfluss Copilot: Portfolio Tracker für dein Vermögen Verbinde deine Konten & Depots in wenigen Klicks. Analysiere deine Investments & behalte deine Vermögensentwicklung im Blick. Auch als App für iOS und Android!

I just found another somewhat popular Flutter app in Germany: The Finanzfluss app. It's a tool to analyze your networth, with a focus on stocks. It seems actually rather cool www.finanzfluss.de/copilot/

1 year ago 8 0 2 0

I'm personally a huge fan of 69 or 420

1 year ago 2 0 0 0

Yeah, I assume creating those passes should work. But as said, since I don't have access to the hardware, I'm unable to test it :|

1 year ago 0 0 0 0

If you try it, I would love to know whether it works or otherwise help you figure out the issues.

1 year ago 1 0 0 0

Creating NFC should work. The new iOS 18 NFC passes are not supported since Apple hasn't released any documentation about them. I haven't tested NFC passes though since I don't have hardware to do so

1 year ago 0 0 2 0
Advertisement

Darf ich mich damit dann höchst offiziell als "Prompt Engineer" betiteln?

1 year ago 1 0 1 0

If I consume more coffee, will the stocks grow even faster?

1 year ago 0 0 0 0
Post image Post image Post image Post image

TIL investing in coffee and cocoa makes big bucks

1 year ago 2 0 1 0
GitHub - marcossevilla/pass_app: A full-stack application to show Apple PassKit functionality. A full-stack application to show Apple PassKit functionality. - marcossevilla/pass_app

Just made my pass_app repo public!

A full-stack #Flutter & #DartFrog example showing how to use PassKit with shared code. 💙🐸

Check it out - uses the passkit library made by @uekoetter.dev: github.com/ueman/passkit 🎫

github.com/marcossevill...

1 year ago 7 3 1 0

That's super interesting to see

1 year ago 1 0 0 0
1 year ago 11 0 0 0

Thanks!

1 year ago 1 0 0 0

👀

1 year ago 1 0 0 0

Yes, I'll still be working with Flutter. Although I wouldn't mind doing (a bit more) native development

1 year ago 0 0 0 0

Yesss, the next gig is already lined up. Stay tuned for the announcement next week or so haha

1 year ago 5 0 1 0
Advertisement
Post image

After 3 years of working at MediaMarktSaturn, Europe's largest electronics retailer, this month will be my last at the company. It's time for new challenges next year.

1 year ago 21 0 2 1

You will not get any information. Yeah, it's super annoying

1 year ago 2 0 0 0

In the end this allows you to know from where your users are coming, not just which deeplinks they like to open the most

1 year ago 1 1 1 0

That's a different thing. The code snippet is not about retrieving the deeplink, but the referrer link. So e.g. if you open "example[.]com" in your app from a Google search, you'll get a link to the Google search page (aka what the browser sets as referrer).

1 year ago 1 1 1 0
class ReferrerObserver with WidgetsBindingObserver {

  @override  
  Future<bool> didPushRouteInformation(RouteInformation routeInformation) async {
    final referrerInfo = await Referrer().getReferrer();
    // TODO: Track the data from referrerInfo
    return false;
  }
}

// Add the observer somewhere
WidgetsBinding.addObserver(ReferrerObserver())

class ReferrerObserver with WidgetsBindingObserver { @override Future<bool> didPushRouteInformation(RouteInformation routeInformation) async { final referrerInfo = await Referrer().getReferrer(); // TODO: Track the data from referrerInfo return false; } } // Add the observer somewhere WidgetsBinding.addObserver(ReferrerObserver())

Did you know that you can track referrer information for your Flutter app, if it was launched via deeplink from a browser?

It can be done with pub.dev/packages/ref...

1 year ago 14 2 2 0