- Migrate ScreenJobCreate.tsx to NewWrapper_V2
- Migrate ScreenJobEdit.tsx to NewWrapper_V2
- Add NewWrapper_V2 component with auto-scroll keyboard handling
- Add useKeyboardForm hook for keyboard management
- Add FormWrapper component for forms
- Create ScreenJobEdit.tsx from edit route (separation of concerns)
- Add documentation for keyboard implementation
- Add TASK-004 migration plan
- Fix: Footer width 100% with safe positioning
- Fix: Content padding bottom 80px for navigation bar
- Fix: Auto-scroll to focused input
- Fix: No white area when keyboard close
- Fix: Footer not raised after keyboard close
Phase 1 completed: Job screens migrated
### No Issue
12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
import { Job_ScreenCreate } from "@/screens/Job/ScreenJobCreate";
|
|
import { Job_ScreenCreate2 } from "@/screens/Job/ScreenJobCreate2";
|
|
|
|
export default function JobCreate() {
|
|
return (
|
|
<>
|
|
{/* <Job_ScreenCreate /> */}
|
|
<Job_ScreenCreate2/>
|
|
</>
|
|
);
|
|
}
|