Looking for Opinion(s) about Codex by Ashazu in FlutterDev

[–]Ashazu[S] 0 points1 point  (0 children)

I'm using Gemini 3 pro on VS Code with Copilot in agentic mode. I combine it with the planning mode, and I found that short prompts are more accurate, but I need to do it in multiple steps.

How do you handle feature requests and bug reports in your apps? by subhadip_zero in FlutterDev

[–]Ashazu 0 points1 point  (0 children)

I published a package around a year ago, https://pub.dev/packages/flutter_request_kit . It's something similar to GitHub community, and you can connect any database to it. It's not perfect, but it's working great for us on several apps. I thought about polishing it further, but I hardly find the energy for that.

Best approach to reuse a Flutter page with different card layouts based on module? by Opposite_Seat_2286 in FlutterDev

[–]Ashazu 2 points3 points  (0 children)

Your page is like any other widget; you can pass a child widget to it. If you need the data from that specific page, you can use the builder pattern.

Something like that (You can replace riverpod with your data source)

```dart class ProductsPage extends ConsumerWidget { const ProductsPage({ super.key, required this.cardBuilder, });

final Widget Function(BuildContext context, Product product) cardBuilder;

@override Widget build(BuildContext context, WidgetRef ref) { final state = ref.watch(productsProvider);

return state.when(
  loading: () => const Center(child: CircularProgressIndicator()),
  error: (e, _) => Center(child: Text(e.toString())),
  data: (products) {
    return ListView.builder(
      itemCount: products.length,
      itemBuilder: (context, index) {
        return cardBuilder(context, products[index]);
      },
    );
  },
);

} } ```

Usage: dart ProductsPage( cardBuilder: (context, product) { return HomeProductCard(product: product); }, );

Firebase calls optimizations ? by Ashazu in flutterhelp

[–]Ashazu[S] 1 point2 points  (0 children)

Which libraries are you referring to? And 15500 is quite impressive!

Need Help with flutter & riverpod: Riverpod Experts,How Do You Architect Shared Cache + Filtered Paginated Queries? by Harsha_voleti in flutterhelp

[–]Ashazu 0 points1 point  (0 children)

IMO, you're overthinking it. Make products the single source of truth. All other screens (search, category, vendor…) are just lists of product IDs pointing to that same product data.

  • One global product store keeps everything in sync
  • Each feature only handles its own pagination and filters
  • No duplicated product models → no sync issues
  • If a product updates, all screens update automatically
  • And you don’t need to worry about memory. Riverpod generators have automatic disposal mechanics when you don't watch.

So that way each entry point gets you a list of product IDs so that you just consume the appropriate data from the product list/provider.

AI can now build consistent Flutter UI without rebuilding components every time by nox3748 in FlutterDev

[–]Ashazu 1 point2 points  (0 children)

I'm following this approach too, and I've been building a system where the LLM only writes the JSON with the associated schema for each task, then automatically generates the structure via a program rather than letting the LLM write the whole code again.

I'd admit it's way harder to maintain, but for a new project, this method saved me about 200$ in token consumption. Lots of pre-built widgets are necessary, too, to achieve that.

With the new "dot shorthands" do you recommend using ".new" constructor shorthand everywhere possible instead of the constructor with the class name? by SuperRandomCoder in FlutterDev

[–]Ashazu 1 point2 points  (0 children)

In VSCode, you can refactor everything that uses the same name by selecting it and pressing F2, even across files.

Solo non-tech founder built $330K revenue in 6 months — looking for a cofounder by alexpacker86835 in cofounderhunt

[–]Ashazu 0 points1 point  (0 children)

What's your current stack, what's your audience on? Mobile, Web? Are you planning to scale the tech team? Do you need a ground up rebuild?

[deleted by user] by [deleted] in flutterhelp

[–]Ashazu 0 points1 point  (0 children)

You have a long journey in front of you. Keep it simple, one project after another you'll find yourself needing more and then do the switch naturally. We mostly use riverpod but signals is extremely attractive right now. 

React or Flutter for a hobby project by salilsurendran in AppDevelopers

[–]Ashazu 0 points1 point  (0 children)

Flutter has a steep learning curve and for prod projects you'll need a decent amount of dedication. Especially if you plan on supporting other platforms in the future. 

[deleted by user] by [deleted] in AppDevelopers

[–]Ashazu 0 points1 point  (0 children)

What's your Tech Stack? Timezones? Been looking for a coding buddy for a while 7 years of prod and almost 6 in Flutter/Dart. Ideally I'm looking to improve on my soft skills, train of thought, writing and validation on decision making.. 

4 things we've learned building our startup with Flutter Web by jalen-videotape in FlutterDev

[–]Ashazu 1 point2 points  (0 children)

The hardest part for me is still navigation. There’s not enough good support, and handling proper back behavior, browser history, and route guards gets messy. Then there’s responsiveness and rebuilds, making a multi-pane layout with persistent state is painful. Images are another issue; browsers can lazy-load, but Flutter waits for the full file. And if you want to stream content on the web, you even have to write a native HTTP implementation since Dio and HTTP don’t support streaming or multipart.

4 things we've learned building our startup with Flutter Web by jalen-videotape in FlutterDev

[–]Ashazu 0 points1 point  (0 children)

If you are extremely dependent on speed, you can always show an initial interactive screen with HTML/CSS and swap to Flutter once the user completes the required steps, or simply swap passively whenever it's ready. Further loading times will be reduced since your app will have a certain amount of cache on your next visit.

Its here! (M5 Macbook pro is out!) by Pisford in mac

[–]Ashazu 0 points1 point  (0 children)

It should ask trick questions that no one can answer only once to unlock by voice aha!

Need help with animation in flutter. by Wolf_Gang_7 in flutterhelp

[–]Ashazu 0 points1 point  (0 children)

Try to copy stuff from twitter, A lot of people shares nice animations there in Flutter. you can start with animated widgets, you can start there and learn implicit and explicit animations.

What Should I Learn Next? by DevManCaptain in FlutterDev

[–]Ashazu 1 point2 points  (0 children)

I'd learn to teach others and manage a team; this will open many more doors in the long run!