DEV Community

Cover image for GetX Repository Deleted — What Flutter Developers Should Do Now
HRUSHIKESH DESAI
HRUSHIKESH DESAI

Posted on

GetX Repository Deleted — What Flutter Developers Should Do Now

What happened?

Recently, the original GetX GitHub repository became unavailable, leaving many Flutter projects without a reliable upstream source.
Since GetX is widely used for state management, routing, and dependency injection, this creates uncertainty for teams relying on it.

You can continue using the existing stable version of Get until the original repository is fully back and stable. This package is simply a fallback option if any issues arise in the meantime.

Immediate solution
To address this, I published a community-maintained continuation:

👉 https://pub.dev/packages/getx_community

This package is based on the last stable version and is designed to be a drop-in replacement.

Migration (takes 1–2 minutes)
Replace imports:
import 'package:get/get.dart';
with:
import 'package:getx_community/getx_community.dart';
Or run:
find . -name "*.dart" -exec sed -i 's|package:get/|package:getx_community/|g' {} +

What’s next?

The goal is to:
Keep compatibility with latest Flutter versions
Maintain stability

Support the community

Website & docs
https://getxcommunity.site/

Top comments (0)