relatica/lib/screens/follow_request_adjudication_screen.dart
2022-12-16 15:41:15 -05:00

16 lines
494 B
Dart

import 'package:flutter/material.dart';
class FollowRequestAdjudicationScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
// with ID, get contact
// Options are:
// Accept and follow back
// Accept and don't follow back
// Reject
// Back with no action
// Calling method should check if completed (true) or not (false) to decide if updating their view of that item
// TODO: implement build
throw UnimplementedError();
}
}