mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-05-12 17:30:39 +00:00
24 lines
472 B
Dart
24 lines
472 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class IntegrationPage extends StatelessWidget {
|
|
const IntegrationPage({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text("Integrations"),
|
|
),
|
|
body: ListView(
|
|
children: [
|
|
TextButton(
|
|
onPressed: () {},
|
|
child: const Text("Choose account"),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|