Huy

Results 3 issues of Huy

**- Support copy value in line** **- Support create cUrl command correctly (work in Postman)** 87df3a26-ce50-4d78-9367-63e1f8c47c9b.png"> **- Avoid rebuild alice http call tab**

```@override Future loadPage({bool isRefresh = false}) async { if ((currentKey == null) || isRefresh) { if (_cancelableOperation != null && !_cancelableOperation!.isCompleted) _cancelableOperation!.cancel(); _cancelableOperation = CancelableOperation.fromFuture(loadInitial(pageSize)); final results = await _cancelableOperation!.valueOrCancellation();...

Step to reproduce: ``` return showCustomModalBottomSheet( containerWidget: (context, animation, child) { return child; }, context: context, backgroundColor: Colors.transparent, barrierColor: Colors.black.withOpacity(0.6), builder: (_) { return [Your screen]; }, settings: RouteSettings( name:...