simpleclub/url_strategy
Flutter ऐप्स के लिए पैकेज जो एक ही पंक्ति कोड के साथ वेब URL रणनीति सेट करने की अनुमति देता है।
- Stars
- 84
- Forks
- 7
- अंतिम पुश (UTC)
- 4 नव॰ 2024
- प्रोजेक्ट स्थिति
- आर्काइव
तकनीकी विषय
मूल README
यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
README खोलें / बंद करें
url_strategy Pub version
⚠️ Discontinued: The functionality is now provided by the flutter SDK out of the box:
https://docs.flutter.dev/ui/navigation/url-strategies
Package for Flutter apps that allows setting the web URL strategy with a single line of code.
Usage
With a simple call of setPathUrlStrategy, your Flutter web app does not have a leading #
in the URL anymore 🚀
import 'package:url_strategy/url_strategy.dart';
void main() {
// Here we set the URL strategy for our web app.
// It is safe to call this function when running on mobile or desktop as well.
setPathUrlStrategy();
runApp(MyApp());
}
See the url_strategy package README
or the explanation on StackOverflow for more detailed usage documentation.
Implementation
The package is basically a wrapper around the flutter_web_plugins
setUrlStrategy. The reason it exists is that using the function from flutter_web_plugins
requires conditional imports.
The problem is solved by using a conditional export from the url_strategy package.