Files
gomix_flutter/lib/ports_tab.dart
minie4 4a6155769c 💄 Start working on the UI
- Add bottom NavBar
- Add top bar
- Start working on the `Mixing` Tab
2024-02-25 19:36:49 +01:00

36 lines
815 B
Dart

import 'package:flutter/material.dart';
class PortsTab extends StatefulWidget {
const PortsTab({super.key});
@override
State<PortsTab> createState() => _PortsTabState();
}
class _PortsTabState extends State<PortsTab> {
@override
Widget build(BuildContext context) {
return const Padding(
padding: EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Card(
child: ListTile(
leading: Icon(Icons.mic_none),
title: Text('Port 1'),
subtitle: Text('...'),
),
),
Card(
child: ListTile(
leading: Icon(Icons.speaker_outlined),
title: Text('Port 2'),
subtitle: Text('...'),
),
),
],
),
);
}
}