@ozgurerdogan At this time, there has not yet been a developer who has written a graphical editor which supports all possible data types available in Pods and given it away for free.
The closest thing is the Pods Shortcode, which is supported in most all editors and WordPress contexts, or the paid plugin which converts the Pods Block Editor blocks to be compatible with many popular page builders.
One alternative may be to embed Block Editor content into other page builders, e.g., with this shortcode used like [embed-post slug="slug-of-any-post-from-any-post-type"]
<?php
add_shortcode(
'embed-post',
function( $atts, $content, $tag ) {
$post_from_slug = get_posts(
'name' => $atts['slug'],
'post_type' => 'any',
'post_status' => 'publish',
'posts_per_page' => 1,
);
if ( array_key_exists( 0, (array) $post_from_slug ) ) {
return $post_from_slug[0]->post_content;
}
return '';
}
);