1. Home
  2. Docs
  3. Threme Setup
  4. Code Setup

Code Setup

Unzip and Dive In!

Once you’ve purchased the app, you’ll receive a .zip file. Go ahead and unzip it. Inside, you’ll find a folder called “newshub.” This is where the magic happens! This is the app’s source code, and it’s where you’ll be working to set up your app.

Open Your IDE

Open your preferred IDE (Visual Studio Code or Android Studio) and navigate to the “newshub” folder. Give it a moment to load the project.

Get Ready to Code

Now, let’s get the project ready for action. Open the terminal within your IDE and run these commands one by one:

Clean the Project:

flutter clean

Use code with caution.

This command clears out any old stuff to make sure everything is fresh and clean.

Grab the Packages:

flutter pub get

Use code with caution.

This command downloads all the necessary building blocks (packages) for your app.

Wait a Bit

It might take a few minutes for these commands to finish. Once they’re done, your project is ready to be configured!