# move_task_to **Repository Path**: cjlmonster/move_task_to ## Basic Information - **Project Name**: move_task_to - **Description**: A New Flutter Plugin - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-04-25 - **Last Updated**: 2024-12-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # move_task_to A flutter plugin to prevent APP destruction caused by return button. ## How to use ```dart @override Widget build(BuildContext context) { return MaterialApp( home: PopScope( canPop: false, child: Scaffold( appBar: AppBar( title: const Text('Plugin example app'), ), body: SizedBox( width: double.infinity, child: Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [Text('Running on: $_platformVersion\n')], )), ), onPopInvokedWithResult: (didPop, result) { MoveTaskTo.moveTaskToBack(); }), ); } ```