ssl_cli 1.1.16 copy "ssl_cli: ^1.1.16" to clipboard
ssl_cli: ^1.1.16 copied to clipboard

outdated

A simple command-line application to generate SSL template (folder and file structure) for Flutter Applications

ssl_cli is a simple command line tool to generate folder and file structure for your Flutter apps.

To use it, you should do the followings:

1. Firstly, you should activate dart cli to run it globally and set your path in your respected system:
dart pub global activate ssl_cli

After successful activation, you can use it.

2. Ensure that, you are in the your Flutter root project directory, because it will generate Asset and other localization folders and files under the root project folder. Then write a simple command to generate:
ssl_cli create <project_name>

As we generate localization using this cli thats why we need some configuration. #

Add this below code in pubspec.yaml #

dependencies:
  flutter:
    sdk: flutter

  #this line is added for localization 
  flutter_localizations:
    sdk: flutter
flutter:


  #it will be generate automatically localized file when we added new text in arb file. 
  #Remember it will only generate when we restart our application
  generate: true
  uses-material-design: true

For iOS localization is required to add this below code in dict tag in info.plist #

 <key>CFBundleLocalizations</key>
 	<array>
 		<string>en</string>
 		<string>sv</string>
 	</array>
11
likes
0
pub points
13%
popularity

Publisher

unverified uploader

A simple command-line application to generate SSL template (folder and file structure) for Flutter Applications

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args

More

Packages that depend on ssl_cli