Package Details: flutter 3.41.2-3

Git Clone URL: https://aur.archlinux.org/flutter.git (read-only, click to copy)
Package Base: flutter
Description: Flutter SDK component - full installation of development tool and runtime
Upstream URL: https://flutter.dev
Keywords: android fuchsia ios mobile sdk
Licenses: custom, BSD, CCPL
Groups: flutter
Conflicts: flutter
Submitter: flipflop97
Maintainer: WithTheBraid
Last Packager: WithTheBraid
Votes: 151
Popularity: 0.045462
First Submitted: 2017-06-05 21:03 (UTC)
Last Updated: 2026-02-22 06:08 (UTC)

Sources (43)

Pinned Comments

WithTheBraid commented on 2025-11-11 10:15 (UTC)

This package is deprecated in favor of aur/flutter which now contains all required artifacts on its own. This PKGBUILD will be kept as is in order to ensure seamless builds of old Flutter version in future.

Latest Comments

1 2 3 4 5 6 .. 28 Next › Last »

bobpaul commented on 2026-06-11 20:05 (UTC)

@withthebraid please explain how this package is deprecated in favor of itself.

gyscos commented on 2026-06-02 15:26 (UTC)

@Mccurly essentially you are bumping by one the allowed version.

extra/dart was recently updated to 3.12.0, and this flutter package currently requires 3.11.X.

Now I'm not sure if this requirement is forwarded from flutter itself, or if it's just a packaging protection to avoid upgrading dart just in case.

It looks like flutter at that version only required dart >= 3.9:

https://github.com/flutter/flutter/blob/3.41.2/pubspec.yaml#L4

In that case it should be safe to relax the requirement here (like you did, or by actually changing the dartmax version).

Mccurly commented on 2026-03-02 20:30 (UTC)

Does this PKGBUILD here,

_dartmin="3.11.0"
_dartmax="3.12.0"

(...)

makedepends=(
    "dart>=${_dartmin}"
    "dart<${_dartmax}"
    "jq"
    "gradle"
    "unzip"
    "tar"
)

(...) build for any of you?

I only managed to build it if I changed the makedepends to "read":

makedepends=(
    "dart>${_dartmin}"
    "dart<=${_dartmax}"
    "jq"
    "gradle"
    "unzip"
    "tar"
)

Note the swapped '=' from the _dartmin condition to the _dartmax'one

The question remains, though, will this be hazardous?

ebbez commented on 2026-01-30 12:14 (UTC)

@jemorgan I would say so too. The pinned comment is very confusing. This is aur/flutter? Are we supposed to switch to aur/flutter-bin?

jemorgan commented on 2025-12-03 16:18 (UTC)

I don't understand, where is aur/flutter? Isn't this package aur/flutter??

WithTheBraid commented on 2025-11-11 10:15 (UTC)

This package is deprecated in favor of aur/flutter which now contains all required artifacts on its own. This PKGBUILD will be kept as is in order to ensure seamless builds of old Flutter version in future.

mihalycsaba commented on 2025-10-18 23:56 (UTC)

this just messed up my existing setup... I don't understand, why does is it separated in so many packages, also it's outdated.

ahmet-cetinkaya commented on 2025-08-17 10:49 (UTC)

@J21 With FVM, you can quickly install multiple Flutter and Dart versions. You can set a project-specific version so that the correct version is used in that project directory. I use it this way and it works really cleanly. I’d recommend it to you as well.

J21 commented on 2025-08-17 09:08 (UTC)

@J4UNE 10x sounds great so i just take everything else from this except flutter itself?