From f289d869f2d9637420a83965e2317830c5d3293c Mon Sep 17 00:00:00 2001 From: sajidshahriar72543 Date: Thu, 10 Oct 2024 14:45:56 +0600 Subject: [PATCH] data/flutter: Add commands to create project template and cleanup out dir Signed-off-by: sajidshahriar72543 --- data/flutter.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/data/flutter.json b/data/flutter.json index 85eb19617..28550506d 100644 --- a/data/flutter.json +++ b/data/flutter.json @@ -43,6 +43,14 @@ { "definition": "অর্গানাইজেশন/প্রতিষ্ঠানের নাম সেট করতে", "code": "flutter create --org com.yourorg your_project" + }, + { + "definition": "প্রোজেক্ট টেম্পলেট সেট করতে", + "code": "flutter create --template=(app|package|plugin|module) " + }, + { + "definition": "পূর্বে এক্সপোর্টকৃত ফাইলসমূহ ডিলিট করতে", + "code": "flutter clean" } ] },