mirror of
https://github.com/git-touch/git-touch
synced 2024-12-16 10:20:55 +01:00
12 lines
241 B
Dart
12 lines
241 B
Dart
|
// import 'dart:async';
|
||
|
// import 'dart:convert';
|
||
|
// import '../utils.dart';
|
||
|
import 'package:flutter/cupertino.dart';
|
||
|
|
||
|
class IosProfileTab extends StatelessWidget {
|
||
|
@override
|
||
|
Widget build(context) {
|
||
|
return new Text('Profile');
|
||
|
}
|
||
|
}
|