PT Wiradikusuma

Results 18 issues of PT Wiradikusuma

Sometimes you have your own slivers in addition to the list, e.g. a `SliverPersistentHeader` on top and `SliverToBoxAdapter` at the bottom. These 2 properties allow you to do that. Dart...

It would be great if dividers can be added without much hassle. I've made a fork, and have divider working, but I'm lazy so it only works for my use...

enhancement

My app has an AdMob at the bottom, a native component that's always on top. Because of that, I wrap everything else inside `Padding`: Padding( child: _inside(), padding: paddingForAdMob(ctx), ),...

I'm wondering if this plugin support (or will support) Android's "native" in-app update (https://developer.android.com/guide/app-bundle/in-app-updates)?

enhancement
help wanted
good first issue

My app has a bottom padding for ads: Padding( child: _inside(ctx), padding: EdgeInsets.only(bottom: 100), // For ads ) Widget _inside(ctx) => Scaffold( appBar: ..., body: ..., floatingActionButton: ..., ); Unfortunately,...

I have the following model: final case class Wallet( ... pointExpiry: Option[OffsetDateTime], spinExpiry: OffsetDateTime, ... id: Int = 0, ) final class WalletTable(tag: Tag) extends Table[Wallet](tag, "wallet") { def id...

Now that Flutter 2 is out, can we please migrate to null-safe?

As you probably know, Chrome now supports headless (https://developers.google.com/web/updates/2017/04/headless-chrome), and one way to call it is through WebDriver. Any plan for scala-scraper to support headless Chrome?

The code in https://pub.dev/packages/auto_route#route-guards can be improved. Currently: ``` ... // if success == true the navigation will be resumed // else it will be aborted resolver.next(success); ... ``` The...

Flutter 2 now has an official autocomplete, https://github.com/flutter/flutter/pull/62927 -- just wondering what's the plan for this plugin in the future?