The tech-stack of Metacast

Overview of the tech we use at Metacast

Author's picture

Arnab Deka

Co-Founder / CTOEngineering


Coming soon! 📆

import 'package:flutter/material.dart';
 
void main() {
  runApp(MetacastApp());
}
 
class MetacastApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Metacast Hello World',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: HomePage(),
    );
  }
}
 
class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Welcome to Metacast'),
      ),
      body: Center(
        child: Text(
          'Hello, Metacast listeners!',
          style: TextStyle(fontSize: 20, fontWeight: FontWeight.bold),
        ),
      ),
    );
  }
}