PostListPage 에서 PostDetailPage 위젯 생성

          : ListView.separated(
              itemBuilder: (context, index) {
                Post post = postList[index];
                return ListTile(
                  onTap: () {
                    Navigator.push(context,
                        MaterialPageRoute(builder: (context) {
                      return PostDetailPage(postId: post.id);
                    }));
                  },

소비 하는 입장