Skip to content

Instantly share code, notes, and snippets.

View ipranjal's full-sized avatar
:electron:
Into the code verse

Pranjal Pandey ipranjal

:electron:
Into the code verse
View GitHub Profile
@ipranjal
ipranjal / flutter.md
Last active February 4, 2024 10:22
Rules for structuring app using GetX

Flutte App Strycture

Running the application

Once you have forked the project, follow these steps :

  • Run flutter clean once as soon as you fork the project
  • Run flutter pub get
  • Open Xcode and select the proper team and signing key
  • Run pod install
  • Run the application via flutter run !
@ipranjal
ipranjal / pluginSkeleton
Created December 14, 2020 15:48
Bash Script for generating Elgg plugin skeleton [2.x - 3.x]
#!/bin/bash
#name: pluginSkeleton
#author: Pranjal Pandey
#Installation: Put file in root folder
#usage ./pluginSkeleton <pluginName>
if [ $# -eq 0 ]; then
echo "Plugin Name is Missing"
else