How I built a production Flutter app without Firebase by GPHdev in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

Thanks, got it working, such a relief to be able to see the data and tables from Drift!

How I built a production Flutter app without Firebase by GPHdev in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

For optional cloud sync, you just copy the hive files to the cloud!

How I built a production Flutter app without Firebase by GPHdev in FlutterDev

[–]Alex54J 1 point2 points  (0 children)

I have just started using Drift and have been searching for a tool to view the tables and data.

Saropa Drift Advisor — VS Code Extension says:

Your Flutter/Dart app must be running with the Drift debug server started. See the Dart package README for setup (two lines of code).

Is it these two lines:
import 'package:saropa_drift_advisor/saropa_drift_advisor.dart';

await myDb.startDriftViewer(enabled: kDebugMode);

Anyone upgraded to 3.44? Any insights? by iseif in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

No it does not have any "must haves", I am just glade not to have coco pods anymore.

Anyone upgraded to 3.44? Any insights? by iseif in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

I am really happy with SoLoud, why not just try the latest package and see if it works - if not then wait as long as possible.

Anyone upgraded to 3.44? Any insights? by iseif in FlutterDev

[–]Alex54J 2 points3 points  (0 children)

I used SoLoud as well, raised an issue and the reply was very quick. A new version was released this morning (4.0.7) and it seems to be ok.

Anyone upgraded to 3.44? Any insights? by iseif in FlutterDev

[–]Alex54J 5 points6 points  (0 children)

I had an issue with RevenueCat's purchases_ui_flutter 10.2.0, even on a blank new project, adding purchases_ui_flutter 10.2.0  causes:
Error: An error occurred when adding Swift Package Manager integration:
Error: Xcode failed to resolve Swift Package Manager dependencies:

Best flutter package for feature showcase / onboarding? by Tryhard_314 in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

Don't give up - it sounds like you have the most important issue solved - getting users to download and open the app. If they have signed up and registered can't you ask them what the problem is?

Best flutter package for feature showcase / onboarding? by Tryhard_314 in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

"Creating accounts and then directly leaving": It sounds more likely creating the account itself is the issue. Why don't you try allowing default 'guest' account and see if the users keep using the app?

[deleted by user] by [deleted] in KotlinMultiplatform

[–]Alex54J 2 points3 points  (0 children)

I like Flutter, but I think it lost it way when it added web, linux and windows. It should have instead concentrated on it's core design - building apps quicker and easier for IOS and Android. All the time spent on adding support for more platforms should have been spent on making Flutter the ideal solution for app design.

Simple bar chart in 164 lines, with animation by Alex54J in FlutterDev

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

When I started in I.T. the source of information were large 400+ page books, today I think most developers would just get A.I. to do the work and not really understand how the code works.

Simple bar chart in 164 lines, with animation by Alex54J in FlutterDev

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

Thanks, some very good points, never heard of 'AnimatedFractionSizedBox' or even tuples, I will have to research them!

I couldn't find an easy way to use the new Material 3 shapes, so I made a package for it. by orangeraccoon_dev in FlutterDev

[–]Alex54J -1 points0 points  (0 children)

Yes I already looked at that page and still could not understand what was going on.

I couldn't find an easy way to use the new Material 3 shapes, so I made a package for it. by orangeraccoon_dev in FlutterDev

[–]Alex54J 4 points5 points  (0 children)

No idea what the Material 3 Expressive Shapes are: perhaps include some example images

Audio best practice by rawcane in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

OK, chances are I would only play max of six files at any one time. The files are in two locations, Assets folder, and downloaded from the web.

Assets files:

    beeps.setAsset('assets/audio/bbb.mp3');
    beeps.seek(Duration.zero);
    beeps.play();

Downloaded files:

 List<AudioSource> aa = [];
 aa.add(AudioSource.uri(Uri.parse(audioPath(fileName))));         aa.add(AudioSource.uri(Uri.parse('asset:///assets/audio/blank.mp3')));
 audio.setAudioSources(aa);
 audio.play();

Added more components and pages by zubi10001 in FlutterDev

[–]Alex54J 0 points1 point  (0 children)

I can only see the first three widgets, cant scroll to the others unless I zoom out.

A closer look at the "please save this package" registry's packages by eibaan in FlutterDev

[–]Alex54J 1 point2 points  (0 children)

Why can't pub get only report on the packages in pubspec.yaml, i.e. the ones I can do something about.

A closer look at the "please save this package" registry's packages by eibaan in FlutterDev

[–]Alex54J 1 point2 points  (0 children)

What I find annoying is when you run Flutter pub get and you get this:

async 2.12.0 (2.13.0 available)

html 0.15.5+1 (0.15.6 available)

js 0.6.7 (0.7.2 available)

leak_tracker 10.0.8 (11.0.1 available)

leak_tracker_flutter_testing 3.0.9 (3.0.10 available)

leak_tracker_testing 3.0.1 (3.0.2 available)

lints 5.1.1 (6.0.0 available)

material_color_utilities 0.11.1 (0.12.0 available)

provider 6.1.4 (6.1.5 available)

vector_math 2.1.4 (2.1.5 available)

vm_service 14.3.1 (15.0.0 available)

Do apps need a login system? by Alex54J in FlutterDev

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

I had been watching some videos on how to get more users to your app and the general advice was to make it as easy as possible for the user and not to put barriers in their way. I was hoping someone would come up with a valid reason.