Brett Lindsay

Results 6 comments of Brett Lindsay

Just started trying this package out today - I immediately tried to look for an bool autoplay sort of flag. Is there some reason onInit doesn't exist on the Animate(child:)...

Is there something wrong with just respecting the delay when the user has taken the responsibility to call play themselves if if they could add their own at that time?...

```dart Animate( onPlay: (controller) { _controller ??= controller; if (!_isLoading) { controller.stop(); } }, controller: _controller, effects: const [RotateEffect(duration: Duration(milliseconds: 600))], child: const Icon(Icons.refresh, color: activeColor), ), ``` I'm just...

How is it expected to have a server entry setup in the app to use .pgpass instead of the placeholder defaults?

Here's another update to ExpandablePageView with utilizing late initialization and records/pattern matching. ``` import 'package:flutter/material.dart'; final class ExpandablePageView extends StatefulWidget { final List children; const ExpandablePageView({required this.children, super.key}); @override State...

Is the example project no good? I see it's all deleted in this PR - otherwise I could use this update to the package as well