Running a Gallery Shortcode in a Custom Fields Widget

You can try to add this filter

<?php
 /**
 * Plugin Name: Shortcodes support for the Custom Fields Widget plugin
 *
 */    
add_filter( 'custom_field_value', 'do_shortcode' );

as a plugin.

This should hopefully make your shortcodes work.

Here you can read more about the WordPress function do_shortcode().