vastu_compass 1.0.1 copy "vastu_compass: ^1.0.1" to clipboard
vastu_compass: ^1.0.1 copied to clipboard

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 misal [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:vastu_compass/models/vastu_category_model.dart';
import 'package:vastu_compass/vastu_compass.dart';

void main() async{
  WidgetsFlutterBinding.ensureInitialized();

  await SystemChrome.setPreferredOrientations([
    DeviceOrientation.portraitUp,
  ]);
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Package',
      theme: ThemeData(
        // This is the theme of your application.
        //
        // TRY THIS: Try running your application with "flutter run". You'll see
        // the application has a purple toolbar. Then, without quitting the app,
        // try changing the seedColor in the colorScheme below to Colors.green
        // and then invoke "hot reload" (save your changes or press the "hot
        // reload" button in a Flutter-supported IDE, or press "r" if you used
        // the command line to start the app).
        //
        // Notice that the counter didn't reset back to zero; the application
        // state is not lost during the reload. To reset the state, use hot
        // restart instead.
        //
        // This works for code too, not just values: Most code changes can be
        // tested with just a hot reload.
        colorScheme: ColorScheme.fromSeed(
          seedColor: Colors.deepPurple,
        ),
      ),
      home: const MyHomePage(
        title: 'Flutter Package',
      ),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({
    super.key,
    required this.title,
  });

  // This widget is the home page of your application. It is stateful, meaning
  // that it has a State object (defined below) that contains fields that affect
  // how it looks.

  // This class is the configuration for the state. It holds the values (in this
  // case the title) provided by the parent (in this case the App widget) and
  // used by the build method of the State. Fields in a Widget subclass are
  // always marked "final".

  final String title;

  @override
  State<MyHomePage> createState() =>
      _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      // This call to setState tells the Flutter framework that something has
      // changed in this State, which causes it to rerun the build method below
      // so that the display can reflect the updated values. If we changed
      // _counter without calling setState(), then the build method would not be
      // called again, and so nothing would appear to happen.
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    // This method is rerun every time setState is called, for instance as done
    // by the _incrementCounter method above.
    //
    // The Flutter framework has been optimized to make rerunning build methods
    // fast, so that you can just rebuild anything that needs updating rather
    // than having to individually change instances of widgets.
    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: Column(
          // Column is also a layout widget. It takes a list of children and
          // arranges them vertically. By default, it sizes itself to fit its
          // children horizontally, and tries to be as tall as its parent.
          //
          // Column has various properties to control how it sizes itself and
          // how it positions its children. Here we use mainAxisAlignment to
          // center the children vertically; the main axis here is the vertical
          // axis because Columns are vertical (the cross axis would be
          // horizontal).
          //
          // TRY THIS: Invoke "debug painting" (choose the "Toggle Debug Paint"
          // action in the IDE, or press "p" in the console), to see the
          // wireframe for each widget.
          mainAxisAlignment:
              MainAxisAlignment.start,
          children: <Widget>[
            VastuCompass(
              aCategoryDataModel: VastuCategoryDataModel.fromJson({
                // "selectedCategoryData" :  [
                //   {
                //     "direction": "North",
                //     "zone": "Bad",
                //     "compass_direction": "N",
                //     "start_angle": 348.75,
                //     "end_angle": 11.25,
                //     "element": "Water",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "remedies_secondary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "effect": [
                //       "Toilet in the north zone causes health issues.",
                //       "Using the toilet here causes career problems."
                //     ]
                //   },
                //   {
                //     "direction": "North",
                //     "zone": "Bad",
                //     "compass_direction": "NNE",
                //     "start_angle": 11.25,
                //     "end_angle": 33.75,
                //     "element": "Water",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "remedies_secondary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "effect": [
                //       "The toilet here causes health issues and weakens your immune system."
                //     ]
                //   },
                //   {
                //     "direction": "North",
                //     "zone": "Bad",
                //     "compass_direction": "NE",
                //     "start_angle": 33.75,
                //     "end_angle": 56.25,
                //     "element": "Water",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Use blue polythene and blue tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "remedies_secondary": [
                //       "Use blue polythene and blue tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "effect": [
                //       "The toilet in the NE Zone causes mental disturbance.",
                //       "It also causes chronic and frequent illness."
                //     ]
                //   },
                //   {
                //     "direction": "North",
                //     "zone": "Bad",
                //     "compass_direction": "ENE",
                //     "start_angle": 56.25,
                //     "end_angle": 78.75,
                //     "element": "Air",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "remedies_secondary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "effect": [
                //       "The toilet in the ENE zone creates negative energy.",
                //       "The toilet here causes a lethargic and unmotivated attitude in family life."
                //     ]
                //   },
                //   {
                //     "direction": "East",
                //     "zone": "Bad",
                //     "compass_direction": "E",
                //     "start_angle": 78.75,
                //     "end_angle": 101.25,
                //     "element": "Air",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "remedies_secondary": [
                //       "Use green polythene and green tape to vacuum the toilet.",
                //       "Use a stainless steel strip around the toilet.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "effect": [
                //       "The toilet in the East Zone disrupts social connectivity.",
                //       "The toilet in this area causes heart problems."
                //     ]
                //   },
                //   {
                //     "direction": "East",
                //     "zone": "Good",
                //     "compass_direction": "ESE",
                //     "start_angle": 101.25,
                //     "end_angle": 123.75,
                //     "element": "Air",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Ideal for the toilet."
                //     ],
                //     "remedies_secondary": [
                //       "Ideal for the toilet."
                //     ],
                //     "effect": [
                //       "A toilet in the ESE zone reduces anxiety and increases social popularity.",
                //       "The toilet in this area promotes a positive attitude and good focus on goals."
                //     ]
                //   },
                //   {
                //     "direction": "East",
                //     "zone": "Bad",
                //     "compass_direction": "SE",
                //     "start_angle": 123.75,
                //     "end_angle": 146.25,
                //     "element": "Fire",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Vacuum the toilet using green polythene and tape, and remove the water energy.",
                //       "Use jasmine and sandalwood essential oil in the toilet.",
                //       "Use a green mat around the commode.",
                //       "Use a copper strip around the commode, a red spotlight, and a 24-hour exhaust."
                //     ],
                //     "remedies_secondary": [
                //       "Vacuum the toilet using green polythene and tape, and remove the water energy.",
                //       "Use jasmine and sandalwood essential oil in the toilet.",
                //       "Use a green mat around the commode.",
                //       "Use a copper strip around the commode, a red spotlight, and a 24-hour exhaust."
                //     ],
                //     "effect": [
                //       "Toilet in SE zone causes cash flow blockage."
                //     ]
                //   },
                //   {
                //     "direction": "East",
                //     "zone": "Bad",
                //     "compass_direction": "SSE",
                //     "start_angle": 146.25,
                //     "end_angle": 168.75,
                //     "element": "Fire",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Use green tape and eliminate water energy.",
                //       "Use jasmine and sandalwood essential oil in the toilet.",
                //       "Use a green mat around the commode.",
                //       "Use a copper strip around the commode, a red spotlight, and a 24-hour exhaust."
                //     ],
                //     "remedies_secondary": [
                //       "Use green tape and eliminate water energy.",
                //       "Use jasmine and sandalwood essential oil in the toilet.",
                //       "Use a green mat around the commode.",
                //       "Use a copper strip around the commode, a red spotlight, and a 24-hour exhaust."
                //     ],
                //     "effect": []
                //   },
                //   {
                //     "direction": "South",
                //     "zone": "Average",
                //     "compass_direction": "S",
                //     "start_angle": 168.75,
                //     "end_angle": 191.25,
                //     "element": "Fire",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Use green tape and remove water energy. No need to vacuum.",
                //       "Use jasmine and sandalwood essential oil in the toilet.",
                //       "Use a green mat around the commode.",
                //       "Use a copper strip around the commode and run the exhaust for 24 hours."
                //     ],
                //     "remedies_secondary": [
                //       "Use green tape and remove water energy. No need to vacuum.",
                //       "Use jasmine and sandalwood essential oil in the toilet.",
                //       "Use a green mat around the commode.",
                //       "Use a copper strip around the commode and run the exhaust for 24 hours."
                //     ],
                //     "effect": [
                //       "The toilet in the South Zone may reduce mental relaxation and harmony."
                //     ]
                //   },
                //   {
                //     "direction": "South",
                //     "zone": "Good",
                //     "compass_direction": "SSW",
                //     "start_angle": 191.25,
                //     "end_angle": 213.75,
                //     "element": "Earth",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Ideal for the toilet.",
                //       "No need to vacuum in this direction."
                //     ],
                //     "remedies_secondary": [
                //       "Ideal for the toilet.",
                //       "No need to vacuum in this direction."
                //     ],
                //     "effect": [
                //       "This toilet eliminates unnecessary expenses.",
                //       "A toilet in this area causes conflict in married life."
                //     ]
                //   },
                //   {
                //     "direction": "South",
                //     "zone": "Bad",
                //     "compass_direction": "SW",
                //     "start_angle": 213.75,
                //     "end_angle": 236.25,
                //     "element": "Earth",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Avoid using this toilet in this area.",
                //       "Vacuum with yellow polythene or yellow tape.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar hawan cup with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "remedies_secondary": [
                //       "Avoid using this toilet in this area.",
                //       "Vacuum with yellow polythene or yellow tape.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar hawan cup with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "effect": [
                //       "A toilet in the southwest zone is not recommended as it can harm family relationships and cause issues with children.",
                //       "The toilet here causes Pitra Dosha and chronic problems.",
                //       "Using the toilet here causes career problems."
                //     ]
                //   },
                //   {
                //     "direction": "South",
                //     "zone": "Bad",
                //     "compass_direction": "WSW",
                //     "start_angle": 236.25,
                //     "end_angle": 258.75,
                //     "element": "Space",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Avoid using this toilet in this area.",
                //       "Use a yellow mat and an exhaust fan.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar Havan cap with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "remedies_secondary": [
                //       "Avoid using this toilet in this area.",
                //       "Use a yellow mat and an exhaust fan.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar Havan cap with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "effect": [
                //       "Toilet in WSW Zone impacts your cash savings.",
                //       "The toilet here also hinders study progress."
                //     ]
                //   },
                //   {
                //     "direction": "West",
                //     "zone": "Bad",
                //     "compass_direction": "W",
                //     "start_angle": 258.75,
                //     "end_angle": 281.25,
                //     "element": "Space",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Avoid using this toilet in this area.",
                //       "Use a yellow mat and an exhaust fan.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar hawan cup with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "remedies_secondary": [
                //       "Avoid using this toilet in this area.",
                //       "Use a yellow mat and an exhaust fan.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar hawan cup with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "effect": [
                //       "The toilet in the west zone generally hampers your gains and profits, disturbs Saturn, and causes waist pain."
                //     ]
                //   },
                //   {
                //     "direction": "West",
                //     "zone": "Good",
                //     "compass_direction": "WNW",
                //     "start_angle": 281.25,
                //     "end_angle": 303.75,
                //     "element": "Space",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "No remedy needed.",
                //       "Use white paint."
                //     ],
                //     "remedies_secondary": [
                //       "No remedy needed.",
                //       "Use white paint."
                //     ],
                //     "effect": [
                //       "This toilet encourages getting rid of harmful habits.",
                //       "The toilet in the WNW zone promotes good health."
                //     ]
                //   },
                //   {
                //     "direction": "West",
                //     "zone": "Average",
                //     "compass_direction": "NW",
                //     "start_angle": 303.75,
                //     "end_angle": 326.25,
                //     "element": "Space",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "Avoid using this toilet in this area.",
                //       "Use a yellow mat and an exhaust fan.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar hawan cup with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "remedies_secondary": [
                //       "Avoid using this toilet in this area.",
                //       "Use a yellow mat and an exhaust fan.",
                //       "Use a brass strip, a yellow mat, and a Vastu Shikhar hawan cup with camphor.",
                //       "Use a door closer and a yellow spotlight."
                //     ],
                //     "effect": [
                //       "The toilet in the NW Zone is best for health and immunity.",
                //       "The toilet here brings happiness and prosperity."
                //     ]
                //   },
                //   {
                //     "direction": "West",
                //     "zone": "Bad",
                //     "compass_direction": "NNW",
                //     "start_angle": 326.25,
                //     "end_angle": 348.75,
                //     "element": "Water",
                //     "facing": "",
                //     "devta": "",
                //     "remedies_primary": [
                //       "No need to vacuum in this direction.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "remedies_secondary": [
                //       "No need to vacuum in this direction.",
                //       "Use red sandalwood essential oil in the toilet.",
                //       "Use a blue spotlight and keep the exhaust fan on 24 hours with a door closer."
                //     ],
                //     "effect": [
                //       "A septic tank in the NNW zone causes problems in your life.",
                //       "A toilet in this area causes conflict in married life."
                //     ]
                //   }
                // ],
                "selectedCategoryData":  [
                  {
                    "direction": "North",
                    "zone": "Bad",
                    "compass_direction": "NW",
                    "start_angle": 315,
                    "end_angle": 326.25,
                    "element": "Space",
                    "facing": "N1",
                    "devta": "Roga",
                    "remedies_primary": [
                      "Use a brass strip near or under the main door.",
                      "Use a yellow floor mat.",
                      "Use a door closer.",
                      "Use a circular brass helix.",
                      "Use yellow tape to strip the door."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip near or under the main door.",
                      "Use a yellow floor mat.",
                      "Use a door closer.",
                      "Use a circular brass helix.",
                      "Use yellow tape to strip the door."
                    ],
                    "effect": [
                      "Very unlucky; causes hostility that can lead to severe conflicts or even murder."
                    ]
                  },
                  {
                    "direction": "North",
                    "zone": "Bad",
                    "compass_direction": "NNW",
                    "start_angle": 326.25,
                    "end_angle": 337.5,
                    "element": "Water",
                    "facing": "N2",
                    "devta": "Naga",
                    "remedies_primary": [
                      "Use a stainless steel strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Burn camphor by the gate every day.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "Use a stainless steel strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Burn camphor by the gate every day.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Another negative area causing hostility, material desires, and jealousy."
                    ]
                  },
                  {
                    "direction": "North",
                    "zone": "Good",
                    "compass_direction": "NNW",
                    "start_angle": 337.5,
                    "end_angle": 348.75,
                    "element": "Water",
                    "facing": "N3",
                    "devta": "Mukhya",
                    "remedies_primary": [
                      "No remedy needed.",
                      "Avoid using red or yellow mats or tiles near the door, and the door should not be yellow or red.",
                      "A very lucky door in this area.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "No remedy needed.",
                      "Avoid using red or yellow mats or tiles near the door, and the door should not be yellow or red.",
                      "A very lucky door in this area.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Very fortunate; brings wealth and blessings of sons."
                    ]
                  },
                  {
                    "direction": "North",
                    "zone": "Good",
                    "compass_direction": "N",
                    "start_angle": 348.75,
                    "end_angle": 360,
                    "element": "Water",
                    "facing": "N4",
                    "devta": "Bhallat",
                    "remedies_primary": [
                      "No remedy needed.",
                      "Avoid using red or yellow mats or tiles near the door, and the door should not be yellow or red.",
                      "A very lucky door in this area.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "No remedy needed.",
                      "Avoid using red or yellow mats or tiles near the door, and the door should not be yellow or red.",
                      "A very lucky door in this area.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Associated with the god of abundance, it brings great wealth and prosperity."
                    ]
                  },
                  {
                    "direction": "North",
                    "zone": "Average",
                    "compass_direction": "N",
                    "start_angle": 360,
                    "end_angle": 11.25,
                    "element": "Water",
                    "facing": "N5",
                    "devta": "Som",
                    "remedies_primary": [
                      "Use a stainless steel strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Burn camphor by the gate every day.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "Use a stainless steel strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Burn camphor by the gate every day.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Moon energy aids in wealth generation, child development, and spiritual growth."
                    ]
                  },
                  {
                    "direction": "North",
                    "zone": "Bad",
                    "compass_direction": "NNE",
                    "start_angle": 11.25,
                    "end_angle": 22.5,
                    "element": "Water",
                    "facing": "N6",
                    "devta": "Bhujag",
                    "remedies_primary": [
                      "Use a stainless steel or aluminum strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Burn camphor by the gate every day.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "Use a stainless steel or aluminum strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Burn camphor by the gate every day.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Unlucky; causes health issues such as flu, kidney, and eye problems."
                    ]
                  },
                  {
                    "direction": "North",
                    "zone": "Bad",
                    "compass_direction": "NNE",
                    "start_angle": 22.5,
                    "end_angle": 33.75,
                    "element": "Water",
                    "facing": "N7",
                    "devta": "Aditi",
                    "remedies_primary": [
                      "Use a stainless steel or aluminum strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "Use a stainless steel or aluminum strip near the main door.",
                      "Use a blue floor mat.",
                      "Use a small bagua mirror.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Adversely affects women, leading to rebellion and unconventional relationships."
                    ]
                  },
                  {
                    "direction": "North",
                    "zone": "Average",
                    "compass_direction": "NE",
                    "start_angle": 33.75,
                    "end_angle": 45,
                    "element": "Water",
                    "facing": "N8",
                    "devta": "Diti",
                    "remedies_primary": [
                      "Avoid using red or yellow mats or tiles near the door, and the door should not be yellow or red.",
                      "A very lucky door in this area.",
                      "Use a mirror for positive energy.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "Avoid using red or yellow mats or tiles near the door, and the door should not be yellow or red.",
                      "A very lucky door in this area.",
                      "Use a mirror for positive energy.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Brings good fortune and peace to the household."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Bad",
                    "compass_direction": "NE",
                    "start_angle": 45,
                    "end_angle": 56.25,
                    "element": "Water",
                    "facing": "E1",
                    "devta": "Shikhi",
                    "remedies_primary": [
                      "Use an aluminum or brass strip.",
                      "Use a blue floor mat.",
                      "Use a door closer.",
                      "Use a Bagua mirror.",
                      "Use blue tape on the door strip."
                    ],
                    "remedies_secondary": [
                      "Use an aluminum or brass strip.",
                      "Use a blue floor mat.",
                      "Use a door closer.",
                      "Use a Bagua mirror.",
                      "Use blue tape on the door strip."
                    ],
                    "effect": [
                      "Very unlucky; causes fires and financial losses."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Bad",
                    "compass_direction": "ENE",
                    "start_angle": 56.25,
                    "end_angle": 67.5,
                    "element": "Air",
                    "facing": "E2",
                    "devta": "Parjanya",
                    "remedies_primary": [
                      "Use a stainless steel strip.",
                      "Use a green floor mat.",
                      "Keep the door green.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "remedies_secondary": [
                      "Use a stainless steel strip.",
                      "Use a green floor mat.",
                      "Keep the door green.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "effect": [
                      "Causes unnecessary spending and financial instability."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Good",
                    "compass_direction": "ENE",
                    "start_angle": 67.5,
                    "end_angle": 78.75,
                    "element": "Air",
                    "facing": "E3",
                    "devta": "Jayant",
                    "remedies_primary": [
                      "Do not use red or yellow doors or tiles.",
                      "Use green tape to strip the door."
                    ],
                    "remedies_secondary": [
                      "Do not use red or yellow doors or tiles.",
                      "Use green tape to strip the door."
                    ],
                    "effect": [
                      "Brings victory, success, and fruitful social connections."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Good",
                    "compass_direction": "E",
                    "start_angle": 78.75,
                    "end_angle": 90,
                    "element": "Air",
                    "facing": "E4",
                    "devta": "Indra",
                    "remedies_primary": [
                      "Do not use red or yellow doors or tiles.",
                      "Use green tape to strip the door."
                    ],
                    "remedies_secondary": [
                      "Do not use red or yellow doors or tiles.",
                      "Use green tape to strip the door."
                    ],
                    "effect": [
                      "Ensures connections with influential people, leading to profit and power."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Average",
                    "compass_direction": "E",
                    "start_angle": 90,
                    "end_angle": 101.25,
                    "element": "Air",
                    "facing": "E5",
                    "devta": "Surya",
                    "remedies_primary": [
                      "Use a stainless steel strip.",
                      "Use a green floor mat.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door.",
                      "Keep the door green."
                    ],
                    "remedies_secondary": [
                      "Use a stainless steel strip.",
                      "Use a green floor mat.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door.",
                      "Keep the door green."
                    ],
                    "effect": [
                      "Mixed results: people become aggressive and make poor decisions."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Bad",
                    "compass_direction": "ESE",
                    "start_angle": 101.25,
                    "end_angle": 112.5,
                    "element": "Air",
                    "facing": "E6",
                    "devta": "Satya",
                    "remedies_primary": [
                      "Use a green floor mat.",
                      "Keep the door green.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door.",
                      "Use a stainless steel strip."
                    ],
                    "remedies_secondary": [
                      "Use a green floor mat.",
                      "Keep the door green.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door.",
                      "Use a stainless steel strip."
                    ],
                    "effect": [
                      "Encourages unethical behavior, causing trouble."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Bad",
                    "compass_direction": "ESE",
                    "start_angle": 112.5,
                    "end_angle": 123.75,
                    "element": "Air",
                    "facing": "E7",
                    "devta": "Bhrisha",
                    "remedies_primary": [
                      "Use a stainless steel strip.",
                      "Use a green floor mat.",
                      "Keep the door green.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "remedies_secondary": [
                      "Use a stainless steel strip.",
                      "Use a green floor mat.",
                      "Keep the door green.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "effect": [
                      "Uncanny behavior, self-centered attitude, and losing connection with society hinder his success."
                    ]
                  },
                  {
                    "direction": "East",
                    "zone": "Bad",
                    "compass_direction": "SE",
                    "start_angle": 123.75,
                    "end_angle": 135,
                    "element": "Fire",
                    "facing": "E8",
                    "devta": "Akash",
                    "remedies_primary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker."
                    ],
                    "remedies_secondary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker."
                    ],
                    "effect": [
                      "Causes theft, unexpected losses, and issues with authorities."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Bad",
                    "compass_direction": "SE",
                    "start_angle": 135,
                    "end_angle": 146.25,
                    "element": "Fire",
                    "facing": "S1",
                    "devta": "Anila",
                    "remedies_primary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "remedies_secondary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "effect": [
                      "Negatively impacts the boy and leads to conflicts with parents."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Bad",
                    "compass_direction": "SSE",
                    "start_angle": 146.25,
                    "end_angle": 157.5,
                    "element": "Fire",
                    "facing": "S2",
                    "devta": "Pusha",
                    "remedies_primary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "remedies_secondary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker.",
                      "Use green tape to strip the door."
                    ],
                    "effect": [
                      "Brings corporate success but causes issues with relatives."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Good",
                    "compass_direction": "SSE",
                    "start_angle": 157.5,
                    "end_angle": 168.75,
                    "element": "Fire",
                    "facing": "S3",
                    "devta": "Vithatha",
                    "remedies_primary": [
                      "Don't use a blue door or mat.",
                      "A very lucky door in this area.",
                      "Use door energy blocker."
                    ],
                    "remedies_secondary": [
                      "Don't use a blue door or mat.",
                      "A very lucky door in this area.",
                      "Use door energy blocker."
                    ],
                    "effect": [
                      "Brings intelligence and success, but can cause unreliability."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Good",
                    "compass_direction": "S",
                    "start_angle": 168.75,
                    "end_angle": 180,
                    "element": "Fire",
                    "facing": "S4",
                    "devta": "Gruhakshat",
                    "remedies_primary": [
                      "Don't use a blue door or mat.",
                      "A very lucky door in this area.",
                      "Use door energy blocker."
                    ],
                    "remedies_secondary": [
                      "Don't use a blue door or mat.",
                      "A very lucky door in this area.",
                      "Use door energy blocker."
                    ],
                    "effect": [
                      "Brings fame and success, especially beneficial for media personalities."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Bad",
                    "compass_direction": "S",
                    "start_angle": 180,
                    "end_angle": 191.25,
                    "element": "Fire",
                    "facing": "S5",
                    "devta": "Yama",
                    "remedies_primary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker.",
                      "Use a green or red tape door strip."
                    ],
                    "remedies_secondary": [
                      "Use a copper strip under the door.",
                      "Use a red doormat.",
                      "Keep the door color yellow, light red, or pink.",
                      "Use door energy blocker.",
                      "Use a green or red tape door strip."
                    ],
                    "effect": [
                      "Very threatening; leads to illness, suffering, and financial strain."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Bad",
                    "compass_direction": "SSW",
                    "start_angle": 191.25,
                    "end_angle": 202.5,
                    "element": "Earth",
                    "facing": "S6",
                    "devta": "Gandharva",
                    "remedies_primary": [
                      "Use a brass strip near or under the main door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip near or under the main door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "effect": [
                      "Causes stress, severe poverty, and financial instability."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Bad",
                    "compass_direction": "SSW",
                    "start_angle": 202.5,
                    "end_angle": 213.75,
                    "element": "Earth",
                    "facing": "S7",
                    "devta": "Bhringraj",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "effect": [
                      "Causes disappointment and lack of motivation despite efforts."
                    ]
                  },
                  {
                    "direction": "South",
                    "zone": "Bad",
                    "compass_direction": "SW",
                    "start_angle": 213.75,
                    "end_angle": 225,
                    "element": "Earth",
                    "facing": "S8",
                    "devta": "Mrigha",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "effect": [
                      "Causes loneliness, instability, disconnection from society, and Pitra Dosha."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Bad",
                    "compass_direction": "SW",
                    "start_angle": 225,
                    "end_angle": 236.25,
                    "element": "Earth",
                    "facing": "W1",
                    "devta": "Pitra",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "effect": [
                      "Causes instability, poverty, reduced lifespan, and Pitra Dosha."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Bad",
                    "compass_direction": "WSW",
                    "start_angle": 236.25,
                    "end_angle": 247.5,
                    "element": "Space",
                    "facing": "W2",
                    "devta": "Duawarik",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor in Vastu Shikhar's havan cup."
                    ],
                    "effect": [
                      "Causes job instability and relationship problems."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Good",
                    "compass_direction": "WSW",
                    "start_angle": 247.5,
                    "end_angle": 258.75,
                    "element": "Space",
                    "facing": "W3",
                    "devta": "Sugreev",
                    "remedies_primary": [
                      "Do not use red and green mats, tiles, or doors."
                    ],
                    "remedies_secondary": [
                      "Do not use red and green mats, tiles, or doors."
                    ],
                    "effect": [
                      "Very beneficial for teachers and business growth."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Good",
                    "compass_direction": "W",
                    "start_angle": 258.75,
                    "end_angle": 270,
                    "element": "Space",
                    "facing": "W4",
                    "devta": "Pushpdant",
                    "remedies_primary": [
                      "Do not use red and green mats, tiles, or doors."
                    ],
                    "remedies_secondary": [
                      "Do not use red and green mats, tiles, or doors."
                    ],
                    "effect": [
                      "Ensures financial growth, a happy life, and fruitful results through one's own actions, leading to the fulfillment of desires."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Average",
                    "compass_direction": "W",
                    "start_angle": 270,
                    "end_angle": 281.25,
                    "element": "Space",
                    "facing": "W5",
                    "devta": "Varun",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use yellow tape and burn camphor.",
                      "Use door energy blocker."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use yellow tape and burn camphor.",
                      "Use door energy blocker."
                    ],
                    "effect": [
                      "Mixed results: prosperity, but over-ambition can lead to downfall."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Bad",
                    "compass_direction": "WNW",
                    "start_angle": 281.25,
                    "end_angle": 292.5,
                    "element": "Space",
                    "facing": "W6",
                    "devta": "Asur",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor."
                    ],
                    "effect": [
                      "Causes tiredness, weakness, and depression."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Bad",
                    "compass_direction": "WNW",
                    "start_angle": 292.5,
                    "end_angle": 303.75,
                    "element": "Space",
                    "facing": "W7",
                    "devta": "Shosha",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor."
                    ],
                    "effect": [
                      "Causes physical weakness and drug addiction."
                    ]
                  },
                  {
                    "direction": "West",
                    "zone": "Bad",
                    "compass_direction": "NW",
                    "start_angle": 303.75,
                    "end_angle": 315,
                    "element": "Space",
                    "facing": "W8",
                    "devta": "Papyakshama",
                    "remedies_primary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor."
                    ],
                    "remedies_secondary": [
                      "Use a brass strip under the door.",
                      "Use a yellow doormat.",
                      "Keep the door yellow.",
                      "Use door energy blocker.",
                      "Use yellow tape and burn camphor."
                    ],
                    "effect": [
                      "Encourages unethical behavior, causing trouble."
                    ]
                  }
                ],
              }),
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: const Icon(Icons.add),
      ), // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
0
likes
0
points
130
downloads

Publisher

unverified uploader

Weekly Downloads

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.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_compass, flutter_svg, google_fonts, json_annotation, json_serializable, permission_handler, sensors_plus

More

Packages that depend on vastu_compass