TODO: Cross-Platform Vastu Compass for iOS and Android Effortlessly align your home or workspace with Vastu Shastra using our powerful sixteen-direction compass. This intuitive tool helps you identify misaligned zones and provides detailed guidance to correct them. Explore comprehensive Effects and Remedies for each direction to enhance harmony, energy, and well-being in your environment.
Features
Vastu Compass with 16 directions.
- Covers all 16 Vastu directions (N, NE, E, SE, S, SW, W, NW, and sub-directions)
- Smooth and responsive compass rotation for accurate alignment
- Displays angle deviation from true North
- Highlights directional impact for selected Vastu zones (e.g., Good, Bad, Best)
- Provides Vastu remedies and solutions based on direction-specific analysis
- User-friendly interface for quick Vastu checks and suggestions
- Ideal for home, office, or plot alignment as per Vastu Shastra
Getting started
Add vastu_compass in pubspec.yaml as dependencies: flutter: sdk: flutter vastu_compass: ^0.0.1
Usage
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
// TRY THIS: Try changing the color here to a specific color (to
// Colors.amber, perhaps?) and trigger a hot reload to see the AppBar
// change color while the other colors stay the same.
backgroundColor:
Theme
.of(
context,
)
.colorScheme
.inversePrimary,
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: VastuCompass()
)
);
}