ssn 0.0.2
ssn: ^0.0.2 copied to clipboard
A Flutter package containing SSN student demo apps, widgets, and reusable screens.
ssn #
ssn is a Flutter package that bundles a collection of student demo apps,
widgets, and screens in one reusable package.
What is included #
- Calculator UI
- Google Maps demo screen
- Video player demos
- AR/VR and robotics demo screens
- Smart irrigation, cooking timer, traffic light, and other academic mini-apps
Install #
Add the package to a Flutter project:
flutter pub add ssn
Then fetch packages:
flutter pub get
Usage #
Import the package:
import 'package:ssn/ssn.dart';
Use any exported widget or screen in your app:
import 'package:flutter/material.dart';
import 'package:ssn/ssn.dart';
void main() {
runApp(const MaterialApp(home: Calculator()));
}
Notes #
This package currently exports the original demo files as they were created, so some file names are intentionally kept as-is for compatibility with the package contents.