Categories
software_dev

HelloWorld

return Scaffold(
  appBar: AppBar(
    title: const Text("QuestingInc"),
  ),
  body: const Text(
    "Hello World",
    style: TextStyle(
      fontSize: 36,
      fontWeight: FontWeight.bold,
    ),
  ),
);